Carsten Sprung
7f5755b537
- [x] This fixes services being not reachable from inside their own container - [x] Container name must be different to URL hostname Reviewed-on: #76
14 lines
356 B
YAML
14 lines
356 B
YAML
version: '3.7'
|
|
|
|
# https://xpufx.com/posts/protecting-your-first-app-with-authentik/
|
|
|
|
services:
|
|
actualbudget:
|
|
image: ghcr.io/actualbudget/actual-server:24.9.0-alpine
|
|
container_name: actualbudget
|
|
restart: "${RESTART:-no}"
|
|
domainname: ${BASE_DOMAIN}
|
|
volumes:
|
|
- ${BASE_DIR:-/srv}/actualbudget/data:/data
|
|
networks:
|
|
- proxy
|