Update docker-compose files to include storage volume

This commit is contained in:
Eugene Burmakin 2025-04-03 18:46:00 +02:00
parent f25f7db70f
commit 0ed6fb7ea8
3 changed files with 6 additions and 1 deletions

View file

@ -7,9 +7,9 @@ services:
dockerfile: Dockerfile
container_name: dawarich_dev
volumes:
- "${PWD}:/var/app:cached"
- dawarich_public:/var/app/public
- dawarich_watched:/var/app/tmp/imports/watched
- dawarich_storage:/var/app/storage
networks:
- dawarich
ports:

View file

@ -41,6 +41,7 @@ services:
volumes:
- dawarich_public:/var/app/public
- dawarich_watched:/var/app/tmp/imports/watched
- dawarich_storage:/var/app/storage
networks:
- dawarich
ports:
@ -98,6 +99,7 @@ services:
volumes:
- dawarich_public:/var/app/public
- dawarich_watched:/var/app/tmp/imports/watched
- dawarich_storage:/var/app/storage
networks:
- dawarich
stdin_open: true
@ -154,3 +156,4 @@ volumes:
dawarich_redis_data:
dawarich_public:
dawarich_watched:
dawarich_storage:

View file

@ -35,6 +35,7 @@ services:
- .env
volumes:
- ./public:/var/app/public
- ./app_storage:/var/app/storage
ports:
- 32568:3000
@ -52,3 +53,4 @@ services:
- .env
volumes:
- ./public:/var/app/public
- ./app_storage:/var/app/storage