mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 03:07:52 +01:00
- Added Site settings > Authentication section - Create/edit/delete your custom oauth2 configurations - Login or signup with oauth2
31 lines
548 B
YAML
31 lines
548 B
YAML
version: '3'
|
|
services:
|
|
db:
|
|
image: postgres
|
|
environment:
|
|
- POSTGRES_USER
|
|
- POSTGRES_PASSWORD
|
|
volumes:
|
|
- dbdata:/var/lib/postgresql/data
|
|
web:
|
|
build:
|
|
context: .
|
|
dockerfile: ./docker/app/Dockerfile
|
|
environment:
|
|
- UPDATE=0
|
|
- BASE_URL
|
|
- ENVIRONMENT
|
|
- SECRET_KEY_BASE
|
|
- POSTGRES_USER
|
|
- POSTGRES_PASSWORD
|
|
- EMAIL_CONFIRMATION
|
|
- MULTI_TENANCY
|
|
volumes:
|
|
- .:/astuto
|
|
ports:
|
|
- "3000:3000"
|
|
depends_on:
|
|
- db
|
|
|
|
volumes:
|
|
dbdata: |