Add new directories for data, report, and CDN files in Dockerfile and docker-compose.yml
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-04-17 23:39:48 +02:00
parent 805745cf0e
commit 06a694417b
2 changed files with 5 additions and 2 deletions

View File

@@ -8,6 +8,8 @@ RUN npm install
COPY . .
RUN mkdir -p /app/data /app/report /app/cdn-files
EXPOSE 5053
CMD [ "npm", "start" ]
CMD [ "npm", "run", "start" ]

View File

@@ -9,6 +9,7 @@ services:
- report-volume:/app/report
- cdn-files-volume:/app/cdn-files
restart: unless-stopped
volumes:
data-volume:
report-volume: