first commit

This commit is contained in:
2026-02-23 15:48:19 +01:00
commit e793d81cae
13 changed files with 624 additions and 0 deletions

17
docker-compose.yml Normal file
View File

@@ -0,0 +1,17 @@
services:
finanse-app:
container_name: finanse-domowe
# 'build: .' mówi Unraidowi, żeby zbudował obraz z Dockerfile w tym samym folderze
build: .
image: finanse-domowe:latest
restart: unless-stopped
ports:
- "8501:8501"
env_file:
- .env
environment:
- TZ=${TIMEZONE}
volumes:
# Mapowanie folderu data, aby baza danych przetrwała restarty
# Ścieżka ./data oznacza folder 'data' w katalogu, gdzie leży plik compose
- ./data:/app/data