14 lines
384 B
YAML
14 lines
384 B
YAML
version: "3.3"
|
|
|
|
services:
|
|
homepage:
|
|
image: ghcr.io/benphelps/homepage:latest
|
|
container_name: homepage
|
|
network_mode: bridge
|
|
restart: unless-stopped
|
|
ports:
|
|
- 800:3000
|
|
volumes:
|
|
- ${HOMEPAGE_CONFIG_PATH}:/app/config # Make sure your local config directory exists
|
|
- /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations
|