lock in mongodb and redis service cotnainers to a specific versions
This commit is contained in:
parent
9eb45270f2
commit
2fd56a4bfe
|
@ -23,7 +23,7 @@ volumes:
|
||||||
services:
|
services:
|
||||||
# postgres database for api service
|
# postgres database for api service
|
||||||
tactical-postgres:
|
tactical-postgres:
|
||||||
image: postgres:13
|
image: postgres:13-alpine
|
||||||
restart: always
|
restart: always
|
||||||
environment:
|
environment:
|
||||||
POSTGRES_DB: tacticalrmm
|
POSTGRES_DB: tacticalrmm
|
||||||
|
@ -36,7 +36,7 @@ services:
|
||||||
|
|
||||||
# redis container for celery tasks
|
# redis container for celery tasks
|
||||||
tactical-redis:
|
tactical-redis:
|
||||||
image: redis
|
image: redis:6.0-alpine
|
||||||
restart: always
|
restart: always
|
||||||
networks:
|
networks:
|
||||||
- redis
|
- redis
|
||||||
|
@ -110,7 +110,7 @@ services:
|
||||||
|
|
||||||
# mongodb container for meshcentral
|
# mongodb container for meshcentral
|
||||||
tactical-mongodb:
|
tactical-mongodb:
|
||||||
image: mongo
|
image: mongo:4.4
|
||||||
restart: always
|
restart: always
|
||||||
environment:
|
environment:
|
||||||
MONGO_INITDB_ROOT_USERNAME: ${MONGODB_USER}
|
MONGO_INITDB_ROOT_USERNAME: ${MONGODB_USER}
|
||||||
|
|
Loading…
Reference in New Issue