Inventarium/docker-compose.yml
2018-12-10 21:54:29 +01:00

16 lines
No EOL
263 B
YAML

version: '3'
services:
db:
image: postgres
ports:
- "5432:5432"
web:
build: ./invsystem
volumes:
- ./invsystem:/server
ports:
- "8000:8000"
depends_on:
- db
command: python3 manage.py runserver 0.0.0.0:8000