homepage is working

This commit is contained in:
2024-08-15 16:33:50 -07:00
parent c3afaa644b
commit 27730a012f
4 changed files with 24 additions and 7 deletions
+9 -3
View File
@@ -1,6 +1,12 @@
# Homepage # homepage
Official site: https://gethomepage.dev/latest/installation/docker/ Last Updated: Thu August 15, 2024 16:11:59 PDT
## Overview
Project: https://gethomepage.dev/latest/
Docker Compose Example: https://gethomepage.dev/latest/installation/docker/
Proxy Port: 3000 Proxy Port: 3000
If you want to use the optional docker socket, you must run as root.
If you want to use the optional docker socket, you must run as root.
+2 -4
View File
@@ -4,8 +4,6 @@ services:
homepage: homepage:
image: ${HOMEPAGE_IMAGE:-ghcr.io/gethomepage/homepage:latest} image: ${HOMEPAGE_IMAGE:-ghcr.io/gethomepage/homepage:latest}
restart: unless-stopped restart: unless-stopped
ports:
- 3000:3000
volumes: volumes:
- ./data/homepage-config:/app/config # Make sure your local config directory exists - ${VOL_CONFIG_PATH:-./config}/homepage:/app/config # Make sure your local config directory exists
- /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations - /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations
+7
View File
@@ -0,0 +1,7 @@
version: '3.4'
services:
homepage:
extends:
file: ${COOKBOOK}/homepage/docker-compose.yml
service: homepage
+6
View File
@@ -0,0 +1,6 @@
# Global
COOKBOOK=/git/docker-compose-cookbooks #HELP: cookbooks
# Homepage
HOMEPAGE_IMAGE=ghcr.io/gethomepage/homepage:latest
VOL_CONFIG_PATH=./config