chore(config): add initial config files and docker compose setup

This commit is contained in:
Prad Nukala
2026-05-28 10:22:05 -04:00
parent a2b3b56d2b
commit cefe6ffabd
25 changed files with 1791 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
services:
glance:
env_file:
- .env
container_name: glance
image: glanceapp/glance
restart: unless-stopped
volumes:
- ./config:/app/config
- ./assets:/app/assets
- /etc/localtime:/etc/localtime:ro
- /var/run/docker.sock:/var/run/docker.sock:ro
ports:
- 6969:8080
glance-github-graph:
image: haumea/glance-github-graph:latest
ports:
- 8181:8080
environment:
- CACHE_ENABLED=true
- CACHE_TYPE=memory
- CACHE_DURATION_SECS=3600
glances-ical-api:
image: ghcr.io/awildleon/glance-ical-events:latest
restart: always
ports:
- "8076:8072"