Skip to content

Commit fcefd86

Browse files
authored
fix: update backend volume paths in docker-compose for caching consistency (#399)
1 parent f35facc commit fcefd86

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docker-compose.prod.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ services:
7272
ports:
7373
- "${BACKEND_WORKER_PORT}:3000"
7474
volumes:
75-
- files_cache:/usr/src/app/.cache
75+
- files_cache:/usr/src/app/backend/.cache
7676
restart: unless-stopped
7777
env_file:
7878
- .env
@@ -93,7 +93,7 @@ services:
9393
backend-api:
9494
image: ${BACKEND_IMAGE}
9595
volumes:
96-
- files_cache:/usr/src/app/.cache
96+
- files_cache:/usr/src/app/backend/.cache
9797
ports:
9898
- "${BACKEND_API_PORT}:3000"
9999
restart: unless-stopped
@@ -121,7 +121,7 @@ services:
121121
backend-download-worker:
122122
image: ${BACKEND_IMAGE}
123123
volumes:
124-
- files_cache:/usr/src/app/.cache
124+
- files_cache:/usr/src/app/backend/.cache
125125
restart: unless-stopped
126126
ports:
127127
- "${BACKEND_DOWNLOAD_WORKER_PORT}:3000"
@@ -144,7 +144,7 @@ services:
144144
backend-download-api:
145145
image: ${BACKEND_IMAGE}
146146
volumes:
147-
- files_cache:/usr/src/app/.cache
147+
- files_cache:/usr/src/app/backend/.cache
148148
ports:
149149
- "${BACKEND_DOWNLOAD_API_PORT}:3000"
150150
restart: unless-stopped

0 commit comments

Comments
 (0)