Added dev docker compose file

This commit is contained in:
Serj
2023-04-26 19:05:50 +01:00
parent db4cdc901c
commit bdf67a7db7
2 changed files with 26 additions and 9 deletions

20
docker-compose-dev.yaml Normal file
View File

@@ -0,0 +1,20 @@
version: "3.9"
services:
redis:
image: redis:6-alpine
ports:
- 6379:6379
mongo:
image: mongo:6
ports:
- 27017:27017
volumes:
- mongodb_data_container:/data/db
volumes:
mongodb_data_container: