Dateien nach "/" hochladen

This commit is contained in:
M_Viper 2025-05-29 18:41:32 +00:00
parent cb454cb9b8
commit c2b5d3ef9c

17
docker-compose.yml Normal file
View File

@ -0,0 +1,17 @@
version: '3.3'
services:
homepage:
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage
environment:
HOMEPAGE_ALLOWED_HOSTS: # Domain oder IP eintragen
PUID: 1000
PGID: 1000
ports:
- 3000:3000
env_file: .env
volumes:
- ./config:/app/config
- /my/homepage/images:/app/config/images
- /var/run/docker.sock:/var/run/docker.sock:ro
restart: unless-stopped