inital version

This commit is contained in:
2024-06-25 00:32:27 +02:00
parent 92e1912a8d
commit e6dfa15cfc
3 changed files with 79 additions and 2 deletions

26
docker-compose.yml Normal file
View File

@@ -0,0 +1,26 @@
services:
homepage:
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage
restart: unless-stopped
env_file:
- .env
ports:
- 3000:3000
deploy:
replicas: 1
placement:
max_replicas_per_node: 1
update_config:
parallelism: 1
delay: 10s
volumes:
- ${basepath:-.}/files:/app/config
- /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations
networks:
- backend
networks:
backend:
name: ${INTRANET:-backend}
external: true