14 lines
351 B
YAML
14 lines
351 B
YAML
version: '3'
|
|
|
|
services:
|
|
db:
|
|
image: postgres
|
|
web:
|
|
build: .
|
|
image: registry.gitlab.com/sahkoinsinoorikilta/vtmk/web2.0-backend:dev
|
|
command: ["bash", "-c", "cd /code && ./wait-for-it.sh db:5432 -- bash setup.sh --no-input --no-npm && python manage.py runserver 0.0.0.0:8000"]
|
|
ports:
|
|
- "8000:8000"
|
|
depends_on:
|
|
- db
|