Initial Commit

Adding docker compose stacks
This commit is contained in:
2024-10-01 21:51:58 +00:00
commit 36ca607c74
12 changed files with 376 additions and 0 deletions

23
homepage/compose.yml Normal file
View File

@@ -0,0 +1,23 @@
services:
homepage:
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage
environment:
PUID: 1029 # optional, your user id
PGID: 1000 # optional, your group id
ports:
- 3069:3000
volumes:
- /home/fejy/docker/homepage:/app/config # Make sure your local config directory exists
- /var/run/docker.sock:/var/run/docker.sock:ro # optional, for docker integrations
restart: unless-stopped
networks:
- proxy
labels:
- "traefik.enable=true"
- "traefik.http.routers.homepage.rule=Host(`home.nearfuture`)"
- "traefik.http.routers.homepage.entrypoints=web"
networks:
proxy:
external: true