sso/docker-compose.yml

30 lines
781 B
YAML

version: "3.3"
services:
# db:
# image: postgres
# volumes:
# - ./data/db:/var/lib/postgresql/data
# environment:
# - POSTGRES_DB=postgres
# - POSTGRES_USER=postgres
# - POSTGRES_PASSWORD=postgres
web:
# build: .
image: realaravinth/mystiq-sso:latest
restart: always
command: >
sh -c "python manage.py makemigrations &&
python manage.py migrate &&
python manage.py runserver 0.0.0.0:8000"
volumes:
- ./sso/local_settings:/code/sso/local_settings/
ports:
- 8000:8000
# environment:
# - POSTGRES_NAME=postgres
# - POSTGRES_USER=postgres
# - POSTGRES_PASSWORD=postgres
# depends_on:
# - db