16 lines
504 B
YAML
16 lines
504 B
YAML
version: "3.5"
|
|
services:
|
|
homepage:
|
|
image: ghcr.io/gethomepage/homepage:latest
|
|
container_name: homepage
|
|
restart: always
|
|
ports:
|
|
- 3000:3000
|
|
env_file: .env # use .env
|
|
volumes:
|
|
- ./config:/app/config # Make sure your local config directory exists
|
|
#- /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations, see alternative methods
|
|
environment:
|
|
PUID: $PUID # read them from .env
|
|
PGID: $PGID # read them from .env
|
|
networks: {}
|