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>
29 lines
862 B
YAML
Executable File
29 lines
862 B
YAML
Executable File
networks:
|
|
vpn:
|
|
external: true
|
|
name: vpn
|
|
|
|
services:
|
|
olivetin:
|
|
container_name: olivetin
|
|
image: jamesread/olivetin:latest-3k
|
|
user: root
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro #SOCKETHERE
|
|
- ./config:/config # replace host path or volume as needed
|
|
- ./ssh:/home/olivetin/.ssh
|
|
ports:
|
|
- "PORT1:1337"
|
|
restart: unless-stopped
|
|
#labels:
|
|
#traefik.enable: true
|
|
#traefik.http.routers.olivetin.entrypoints: web,websecure
|
|
#traefik.http.routers.olivetin.rule: Host(`DOMAINSUBNAMEHERE`)
|
|
#traefik.http.routers.olivetin.tls: true
|
|
#traefik.http.routers.olivetin.tls.certresolver: production
|
|
#traefik.http.services.olivetin.loadbalancer.server.port: PORT1
|
|
#traefik.http.routers.olivetin.middlewares:
|
|
networks:
|
|
vpn:
|
|
ipv4_address: IPADDRESSHERE
|