15 lines
437 B
YAML
15 lines
437 B
YAML
version: "3.3"
|
|
services:
|
|
homepage:
|
|
image: ghcr.io/gethomepage/homepage:latest
|
|
container_name: homepage
|
|
restart: always
|
|
#extra_hosts:
|
|
# - hostname:ip # required if you refer to your services with hostnames instead of ip
|
|
ports:
|
|
- ${HOMEPAGE_HTTP_PORT}:3000
|
|
volumes:
|
|
- ${HOMEPAGE_DIR}:/app/config
|
|
- ${HOMEPAGE_ICONS}:/app/public/icons
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
|