forked from jplock/docker-rsyslog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.default
33 lines (25 loc) · 964 Bytes
/
config.default
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# The image to use when running the container
# Should not need changing, but a tag can be appended here if required
IMAGE=flungo/rsyslog-mongodb
# Should the run script manage the MongoDB image?
# If true, run.sh will create and manage the container named MONGODB_NAME
# true / false
MANAGE_MONGODB=true
# The name of the MongoDB image to use
# Only required when
# The name to be given to the docker container
# Should not contain spaces
NAME=rsyslog
# The port to bind to
# Either just the port (e.g. 514) or an ip and port (e.g. 127.0.1.1:514)
BIND=514
# Name of the mongo DB container to link to
# Should not contain spaces
MONGODB_NAME=rsyslog-mongodb
### MongoDB Settings ###
# You only need to edit below this point if MANAGE_MONGODB has been set to true
# The image to use when running the container
# Should not need changing, but a tag can be appended here if required
MONGODB_IMAGE=mongo
# The directory to store MongoDB data
MONGODB_DIR=./db