17 lines
415 B
YAML
17 lines
415 B
YAML
services:
|
|
homepage:
|
|
image: ghcr.io/gethomepage/homepage:latest
|
|
container_name: homepage
|
|
environment:
|
|
PUID: 1000
|
|
PGID: 1002
|
|
HOMEPAGE_ALLOWED_HOSTS: 192.168.1.202:3000
|
|
ports:
|
|
- 3000:3000
|
|
volumes:
|
|
- ./config:/app/config # Make sure your local config directory exists
|
|
- /mnt/servarr:/servarr
|
|
- /mnt/hdd_1tb:/hdd_1tb
|
|
restart: unless-stopped
|
|
|
|
|