Skip to content

Commit

Permalink
[Fix] static file location
Browse files Browse the repository at this point in the history
  • Loading branch information
Minigrim0 committed Apr 9, 2021
1 parent dd6a457 commit b8fce1a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ services:
dockerfile: Dockerfile
command: gunicorn teamname.wsgi:application -b 0.0.0.0:8000
volumes:
- static_volume:/home/site/web/static
- media_volume:/home/site/web/static/media
- static_volume:/home/app/web/static
- media_volume:/home/app/web/media
expose:
- 8000
env_file:
Expand All @@ -30,8 +30,8 @@ services:
nginx:
build: ./nginx
volumes:
- static_volume:/home/site/web/static
- media_volume:/home/site/web/static/media
- static_volume:/home/app/web/static
- media_volume:/home/app/web/media
labels:
- "traefik.enable=true"
- "traefik.http.routers.ctf.entrypoints=http"
Expand Down

0 comments on commit b8fce1a

Please sign in to comment.