Add mongo to docker and test logger

This commit is contained in:
2024-08-29 13:48:47 +02:00
parent 523f7f8280
commit d670e87908
3 changed files with 21 additions and 3 deletions

View File

@ -37,6 +37,17 @@ services:
volumes:
- ./db-data/postgres:/var/lib/postgresql/data
mongo:
image: mongo
ports:
- "27017:27017"
environment:
MONGO_INITDB_DATABASE: logs
MONGO_INITDB_USERNAME: admin
MONGO_INITDB_PASSWORD: password
volumes:
- ./db-data/mongo:/data/db
adminer:
image: adminer
restart: always