pfannkuchen/compose.yaml

39 lines
No EOL
1.2 KiB
YAML

networks:
proxy_network:
enable_ipv6: true
name: proxy_network
services:
vaultwarden:
image: vaultwarden/server:latest
container_name: vaultwarden
restart: always
ports:
- 80: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
ports:
- 3000: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