14 lines
229 B
YAML
14 lines
229 B
YAML
services:
|
|
app:
|
|
build: .
|
|
ports:
|
|
- "8000:8000"
|
|
network_mode: host
|
|
|
|
volumes:
|
|
- sqlite-database:/app/database
|
|
working_dir: /app
|
|
command: sh ./run_production_server.sh
|
|
|
|
volumes:
|
|
sqlite-database: |