pfannkuchen/compose.yaml

63 lines
No EOL
1.7 KiB
YAML

networks:
proxy_network:
enable_ipv6: true
name: proxy_network
services:
caddy:
image: caddy
container_name: caddy
restart: unless-stopped
networks:
- proxy_network
ports:
- 80:80
- 443:443
expose:
- 8888
volumes:
- /app-config/caddy/Caddyfile:/etc/caddy/Caddyfile
frps:
image: snowdreamtech/frps
container_name: frps
restart: always
networks:
- proxy_network
ports:
- 7000:7000
volumes:
- /app-config/frps/frps.toml:/etc/frp/frps.toml
vaultwarden:
image: vaultwarden/server:latest
container_name: vaultwarden
restart: always
expose:
- 80
environment:
DOMAIN: "https://vault.sascha-lutz.de" # Your domain; vaultwarden needs to know it's https to work properly with attachments
SIGNUPS_ALLOWED: "false"
INVITATIONS_ALLOWED: "false"
LOG_FILE: "/var/log/vaultwarden.log"
ADMIN_TOKEN: "PCcYIigLuigPUADoW5lXESIbVZEvjplpFXmAj0UZ505Th1ta0LWmPc8lAyAXUIp3"
volumes:
- /app-config/vw-data:/data
networks:
- proxy_network
homepage:
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage
restart: always
expose:
- 3000
volumes:
- /app-config/homepage/:/app/config # Make sure your local config directory exists
- /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations, see alternative methods
environment:
HOMEPAGE_ALLOWED_HOSTS: home.sascha-lutz.de,10.3.1.100:3000 # required, may need port. See gethomepage.dev/installation/#homepage_allowed_hosts
PUID: 1000
PGID: 1000
networks:
- proxy_network