Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ help:

default: help

.state/docker-build-web: Dockerfile dev-requirements.txt base-requirements.txt
.state/docker-build-web: docker/Dockerfile dev-requirements.txt base-requirements.txt
# Build web container for this project
docker compose build --force-rm web

Expand Down
7 changes: 5 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,15 @@ services:
static:
command: bin/static
build:
dockerfile: Dockerfile.static
context: .
dockerfile: docker/Dockerfile.static
volumes:
- .:/code

web:
build: .
build:
context: .
dockerfile: docker/Dockerfile
image: pythondotorg:docker-compose
command: python manage.py runserver 0.0.0.0:8000
volumes:
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.