mirror of
https://github.com/nfonteyne/octane-website.git
synced 2026-09-03 23:24:48 +02:00
33 lines
602 B
YAML
33 lines
602 B
YAML
services:
|
|
app:
|
|
build: .
|
|
restart: unless-stopped
|
|
env_file: .env
|
|
ports:
|
|
- "${APP_PORT:-3000}:3000"
|
|
depends_on:
|
|
- postgres
|
|
networks:
|
|
- default
|
|
- authentik
|
|
|
|
postgres:
|
|
image: postgres:16-alpine
|
|
restart: unless-stopped
|
|
environment:
|
|
POSTGRES_DB: octane
|
|
POSTGRES_USER: octane
|
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
|
volumes:
|
|
- pgdata:/var/lib/postgresql/data
|
|
networks:
|
|
- default
|
|
|
|
networks:
|
|
default:
|
|
authentik:
|
|
external: true
|
|
name: ${AUTHENTIK_NETWORK_NAME:-authentik_default}
|
|
|
|
volumes:
|
|
pgdata:
|