Added homepage config
This commit is contained in:
31
DockerStack/Dockers/Homepage/homepage-compose.yaml
Normal file
31
DockerStack/Dockers/Homepage/homepage-compose.yaml
Normal 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
|
||||||
Reference in New Issue
Block a user