mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-04 02:46:23 +00:00
homepage is working
This commit is contained in:
+8
-2
@@ -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
|
||||
|
||||
|
||||
If you want to use the optional docker socket, you must run as root.
|
||||
@@ -4,8 +4,6 @@ services:
|
||||
homepage:
|
||||
image: ${HOMEPAGE_IMAGE:-ghcr.io/gethomepage/homepage:latest}
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 3000:3000
|
||||
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
|
||||
@@ -0,0 +1,7 @@
|
||||
version: '3.4'
|
||||
|
||||
services:
|
||||
homepage:
|
||||
extends:
|
||||
file: ${COOKBOOK}/homepage/docker-compose.yml
|
||||
service: homepage
|
||||
@@ -0,0 +1,6 @@
|
||||
# Global
|
||||
COOKBOOK=/git/docker-compose-cookbooks #HELP: cookbooks
|
||||
|
||||
# Homepage
|
||||
HOMEPAGE_IMAGE=ghcr.io/gethomepage/homepage:latest
|
||||
VOL_CONFIG_PATH=./config
|
||||
Reference in New Issue
Block a user