kelder-homepage/docker-compose.yml
2023-11-23 01:36:18 +01:00

15 lines
404 B
YAML

version: "3.3"
services:
homepage:
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage
environment:
PUID: 1000 # -- optional, your user id
PGID: 1000 # -- optional, your group id
ports:
- 3000:3000
volumes:
- ./config:/app/config # Make sure your local config directory exists
- ./images:/app/public/images
restart: unless-stopped