Init work

This commit is contained in:
2026-03-09 08:19:51 +01:00
parent 43f183bb7c
commit 48cf5b96b7
7 changed files with 796 additions and 0 deletions

21
docker-compose.yml Normal file
View File

@@ -0,0 +1,21 @@
services:
glance:
image: glanceapp/glance
ports:
- "8080:8080"
volumes:
- ./glance.yml:/app/glance.yml
depends_on:
- todo-glance
todo-glance:
build: .
ports:
- "8081:8081"
volumes:
- todo-data:/data
environment:
TODO_EXTERNAL_URL: "http://localhost:8081"
volumes:
todo-data: