Added homepage config

This commit is contained in:
dn
2025-04-08 13:43:12 +02:00
parent 8b86bb6213
commit 53da042b20

View File

@@ -0,0 +1,31 @@
version: '3'
services:
homepage:
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage
restart: unless-stopped
ports:
- 3065:3000
expose:
- 3065
environment:
- PUID=1000
- PGID=1000
- HOMEPAGE_ALLOWED_HOSTS=homep.dockers.localdomain # add your FQDN here
volumes:
#- /var/run/docker.sock:/var/run/docker.sock:ro # (optional) For docker integrations
- homep_conf:/app/config # Make sure your local config directory exists
- homep_ico:/app/public/icons
deploy:
mode: replicated
replicas: 1
volumes:
homep_conf:
driver: gfs_vol
homep_ico:
driver: gfs_vol