Add files via upload

This commit is contained in:
m0onmo0n 2025-08-17 00:54:48 +02:00 committed by GitHub
commit 00b611d753
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 371 additions and 0 deletions

16
compose.yaml Normal file
View file

@ -0,0 +1,16 @@
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: {}