A free, open, self-hosted app platform (GNU AGPLv3): one-click app deploys, Traefik reverse proxy with automatic SSL, rootless Docker support, gluetun VPN routing, and a web dashboard to manage it all. Free & open forever to self-host; optional paid hosted services fund it. See PROMISE.md. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> Signed-off-by: librelad <librelad@digitalangels.vip>
55 lines
1.5 KiB
YAML
Executable File
55 lines
1.5 KiB
YAML
Executable File
networks:
|
|
vpn:
|
|
external: true
|
|
services:
|
|
killbill:
|
|
image: killbill/killbill:0.24.0
|
|
container_name: killbill
|
|
ports:
|
|
- "8788:8080"
|
|
environment:
|
|
- KILLBILL_DAO_URL=jdbc:mysql://db:3306/killbill
|
|
- KILLBILL_DAO_USER=root
|
|
- KILLBILL_DAO_PASSWORD=killbill
|
|
- KILLBILL_CATALOG_URI=SpyCarAdvanced.xml
|
|
networks:
|
|
vpn:
|
|
ipv4_address: 10.100.0.111
|
|
kaui:
|
|
image: killbill/kaui:2.0.11
|
|
container_name: killbill_ui
|
|
ports:
|
|
- "PORT1:8080"
|
|
environment:
|
|
- KAUI_CONFIG_DAO_URL=jdbc:mysql://db:3306/kaui
|
|
- KAUI_CONFIG_DAO_USER=root
|
|
- KAUI_CONFIG_DAO_PASSWORD=killbill
|
|
- KAUI_KILLBILL_URL=http://killbill:8080
|
|
#labels:
|
|
#traefik.enable: true
|
|
#traefik.http.routers.killbill.entrypoints: web,websecure
|
|
#traefik.http.routers.killbill.rule: Host(`DOMAINSUBNAMEHERE`)
|
|
#traefik.http.routers.killbill.tls: true
|
|
#traefik.http.routers.killbill.tls.certresolver: production
|
|
#traefik.http.routers.killbill.middlewares:
|
|
healthcheck:
|
|
disable: false #HEALTHCHECKHERE
|
|
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro #SOCKETHERE
|
|
networks:
|
|
vpn:
|
|
ipv4_address: IPADDRESSHERE
|
|
db:
|
|
image: killbill/mariadb:0.24
|
|
container_name: killbill_db
|
|
volumes:
|
|
- ./data:/var/lib/mysql
|
|
expose:
|
|
- "3306"
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=killbill
|
|
networks:
|
|
vpn:
|
|
ipv4_address: 10.100.0.112
|