initial commit

This commit is contained in:
2025-08-21 11:43:10 +02:00
commit c30f2eab89
51 changed files with 617 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
services:
koillection:
image: koillection/koillection
container_name: koillection
restart: unless-stopped
ports:
- 5645:80
env_file:
- .env
depends_on:
- db
volumes:
- /mnt/user/appdata/koillection/uploads:/uploads
labels:
folder.view2: "Services"
db:
image: postgres:16
container_name: db
restart: unless-stopped
env_file:
- .env
environment:
- POSTGRES_DB=${DB_NAME}
- POSTGRES_USER=${DB_USER}
- POSTGRES_PASSWORD=${DB_PASSWORD}
volumes:
- /mnt/user/appdata/koillection/postgresql:/var/lib/postgresql/data
labels:
folder.view2: "Databases"