name: AURCache-Stack services: main: image: ghcr.io/lukas-heiligenbrunner/aurcache:latest ports: - "${REPO_PORT:-8080}:8080" # Repository - "${WEBUI_PORT:-8081}:8081" # Frontend volumes: - ${REPO_PATH:-./repo}:/app/repo privileged: true environment: - DB_TYPE=POSTGRESQL - DB_USER=aurcache - DB_PWD=${DB_PASSWORD:-password} - DB_HOST=dbhost networks: aurcache_network: restart: unless-stopped database: image: postgres:16 volumes: - ${DB_PATH:-./aurcache/db}:/var/lib/postgresql/data environment: - POSTGRES_PASSWORD=${DB_PASSWORD:-password} - POSTGRES_USER=aurcache restart: unless-stopped networks: aurcache_network: aliases: - "dbhost" networks: aurcache_network: driver: bridge