33 lines
668 B
YAML
33 lines
668 B
YAML
---
|
|
|
|
# Homepage
|
|
# A dashboard for your self-hosted environment
|
|
# Created by
|
|
# ↳ https://github.com/gethomepage/homepage
|
|
|
|
services:
|
|
homepage:
|
|
image: ghcr.io/gethomepage/homepage:latest
|
|
container_name: homepage
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
- proxy
|
|
# ports:
|
|
# - 3000:3000
|
|
|
|
environment:
|
|
PUID: 1000
|
|
PGID: 1000
|
|
|
|
volumes:
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /home/fxequals/docker/homepage/config:/app/config
|
|
- /home/fxequals/docker/homepage/images:/app/public/images
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|
|
|
|
# Documentation available at https://gethomepage.dev/ |