forked from mystiq/sso
28 lines
722 B
YAML
28 lines
722 B
YAML
version: "3.9"
|
|
|
|
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
|
|
command: >
|
|
sh -c "python manage.py makemigrations &&
|
|
python manage.py migrate &&
|
|
python manage.py runserver 0.0.0.0:8000"
|
|
volumes:
|
|
- .:/code
|
|
ports:
|
|
- 8000:8000
|
|
# environment:
|
|
# - POSTGRES_NAME=postgres
|
|
# - POSTGRES_USER=postgres
|
|
# - POSTGRES_PASSWORD=postgres
|
|
# depends_on:
|
|
# - db
|