change docker volume path

This commit is contained in:
Didictateur 2026-02-23 13:48:34 +01:00
parent 8379387d30
commit a537ed78e6

View file

@ -16,10 +16,10 @@ services:
- "127.0.0.1:3002:80" - "127.0.0.1:3002:80"
volumes: volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro - ./nginx.conf:/etc/nginx/nginx.conf:ro
- ./frontend:/usr/share/nginx/html/frontend - ${PWD}/frontend:/usr/share/nginx/html/frontend
- ./index.html:/usr/share/nginx/html/index.html:ro - ${PWD}/index.html:/usr/share/nginx/html/index.html:ro
- ./components:/usr/share/nginx/html/components - ${PWD}/components:/usr/share/nginx/html/components
- ./img:/usr/share/nginx/html/img - ${PWD}/img:/usr/share/nginx/html/img
depends_on: depends_on:
- riichi - riichi
restart: unless-stopped restart: unless-stopped