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: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ RUN pip install --no-cache-dir -r requirements.txt

# Copy project files
COPY . /app/
# Find your own doom.wad and place it in origin folder
COPY doom.wad /tmp/doom1.wad

# Expose Django port
EXPOSE 8000
Expand Down
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ services:
web:
build: .
command: python manage.py runserver 0.0.0.0:8000
# Find your own DOOM.WAD and put it in origin folder
volumes:
- .:/app
ports:
Expand Down