Set MongoDB replicaset from .env file
This commit is contained in:
parent
23c362e160
commit
f04a2d89d1
|
@ -0,0 +1,2 @@
|
|||
- Parameterize MongoDB replicaset in `docker-compose.mongodb.yml` via
|
||||
`SKYNET_DB_REPLICASET` from `.env` file.
|
|
@ -9,7 +9,7 @@ x-logging: &default-logging
|
|||
services:
|
||||
mongo:
|
||||
image: mongo:4.4.1
|
||||
command: --keyFile=/data/mgkey --replSet=skynet
|
||||
command: --keyFile=/data/mgkey --replSet=${SKYNET_DB_REPLICASET}
|
||||
container_name: mongo
|
||||
restart: unless-stopped
|
||||
logging: *default-logging
|
||||
|
|
Reference in New Issue