mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-04 10:56:23 +00:00
11 lines
350 B
YAML
11 lines
350 B
YAML
version: "3.3"
|
|
|
|
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
|
|
- /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations |