16 lines
380 B
YAML
16 lines
380 B
YAML
|
version: '3.7'
|
||
|
|
||
|
# https://xpufx.com/posts/protecting-your-first-app-with-authentik/
|
||
|
|
||
|
services:
|
||
|
actualbudget:
|
||
|
image: ghcr.io/actualbudget/actual-server:23.9.0-alpine
|
||
|
container_name: actualbudget
|
||
|
restart: "${RESTART:-no}"
|
||
|
hostname: money
|
||
|
domainname: ${BASE_DOMAIN}
|
||
|
volumes:
|
||
|
- ${BASE_DIR:-/srv}/actualbudget/data:/data
|
||
|
networks:
|
||
|
- authentik
|