Unifying the restart method for containers Remove scrutiny collector on invidia Change watchtower to an updated fork Expose ports on radarr/sonarr since seerr needs them
26 lines
709 B
YAML
26 lines
709 B
YAML
services:
|
|
homepage:
|
|
image: ghcr.io/gethomepage/homepage:latest
|
|
container_name: homepage
|
|
env_file: ".env"
|
|
environment:
|
|
PUID: 1029
|
|
PGID: 988
|
|
HOMEPAGE_ALLOWED_HOSTS: home.nearfuture
|
|
volumes:
|
|
- /home/fejy/docker/homepage/config:/app/config
|
|
- /home/fejy/docker/homepage/icons:/app/public/icons
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
restart: unless-stopped
|
|
networks:
|
|
- proxy
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.homepage.rule=Host(`home.nearfuture`)"
|
|
- "traefik.http.routers.homepage.entrypoints=web"
|
|
- "com.centurylinklabs.watchtower.scope=watch"
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|