sso/docker-compose.yml

30 lines
781 B
YAML
Raw Normal View History

version: "3.3"
2022-08-22 14:19:14 +05:30
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
2022-08-22 14:19:14 +05:30
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/
2022-08-22 14:19:14 +05:30
ports:
- 8000:8000
# environment:
# - POSTGRES_NAME=postgres
# - POSTGRES_USER=postgres
# - POSTGRES_PASSWORD=postgres
# depends_on:
# - db