Merge pull request #1263 from SkynetLabs/chris/enable-mongodb-skyd
Enable mongodb in docker-compose.yml for skyd
This commit is contained in:
commit
559a22723a
|
@ -0,0 +1 @@
|
|||
- Set skyd up to connect to the local mongodb cluster for storing TUS metadata
|
|
@ -25,6 +25,10 @@ services:
|
|||
logging: *default-logging
|
||||
environment:
|
||||
- SIA_MODULES=gctwr
|
||||
- MONGODB_URI=mongodb://${SKYNET_DB_HOST}:${SKYNET_DB_PORT}
|
||||
- MONGODB_USER=${SKYNET_DB_USER}
|
||||
- MONGODB_PASSWORD=${SKYNET_DB_PASS}
|
||||
|
||||
env_file:
|
||||
- .env
|
||||
volumes:
|
||||
|
|
Reference in New Issue