change docker volume path
This commit is contained in:
parent
8379387d30
commit
a537ed78e6
1 changed files with 4 additions and 4 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue