Initial commit - added all docker compose immediately reachable

This commit is contained in:
2026-01-10 18:05:04 +02:00
commit 966d2ae311
12 changed files with 239 additions and 0 deletions

20
glance/docker-compose.yml Normal file
View File

@@ -0,0 +1,20 @@
services:
glance:
container_name: glance
image: glanceapp/glance
restart: unless-stopped
volumes:
- ./config:/app/config
- ./assets:/app/assets
- /etc/localtime:/etc/localtime:ro
# Optionally, also mount docker socket if you want to use the docker containers widget
# - /var/run/docker.sock:/var/run/docker.sock:ro
ports:
- 127.0.0.1:8099:8080
env_file: .env
networks:
- proxy-network
networks:
proxy-network:
external: true