mirror of
https://github.com/Django-LiveView/demo-doom
synced 2026-01-07 05:43:39 +01:00
20 lines
318 B
YAML
20 lines
318 B
YAML
services:
|
|
redis:
|
|
image: redis:7-alpine
|
|
ports:
|
|
- "6379:6379"
|
|
|
|
web:
|
|
build: .
|
|
command: python manage.py runserver 0.0.0.0:8000
|
|
volumes:
|
|
- .:/app
|
|
ports:
|
|
- "8001:8000"
|
|
environment:
|
|
- PYTHONUNBUFFERED=1
|
|
stdin_open: true
|
|
tty: true
|
|
depends_on:
|
|
- redis
|