feat: updated docker-compose volumes

This commit is contained in:
Efrain Marin
2025-06-19 20:59:17 -06:00
parent 4072825d7b
commit d064969c8a

View File

@@ -17,18 +17,22 @@ services:
- redis - redis
networks: networks:
- thalos-net - thalos-net
volumes:
- /mnt/data-media/agilewebs/api/thalos:/app/data
mongodb: mongodb:
image: mongo:7 image: mongo:7
container_name: thalos-mongodb container_name: thalos-mongodb
volumes: volumes:
- mongo-data:/data/db - /mnt/data-media/agilewebs/api/thalos/mongodb:/data/db
networks: networks:
- thalos-net - thalos-net
redis: redis:
image: redis:7 image: redis:7
container_name: thalos-redis container_name: thalos-redis
volumes:
- /mnt/data-media/agilewebs/api/thalos/redis:/data
networks: networks:
- thalos-net - thalos-net