initial commit

This commit is contained in:
2026-03-23 22:24:24 +01:00
commit 082506d00c
13 changed files with 3362 additions and 0 deletions

22
docker-compose.yml Normal file
View File

@@ -0,0 +1,22 @@
services:
seedmover:
build: .
container_name: seedmover-2
ports:
- 5019:5000
environment:
- SEEDBOX_PATH=/mnt/seedbox
- NAS_PATH=/mnt/nas
- APP_TITLE=SeedMover
- SECRET_KEY=049b72cbe3e3f6dbbb242b30a3087dda9290ddaf1ab10a53ae160d09146b33e5
- APP_USERNAME=admin
- APP_PASSWORD=changeme
- SESSION_LIFETIME=86400
- CACHE_TTL=60
- DATA_DIR=/app/data
volumes:
- /mnt/nas/Useed/Media_useed:/mnt/seedbox:ro
- /mnt/nas/BOB4-Syno:/mnt/nas
- ./data:/app/data # persistance des connexions
restart: unless-stopped
networks: {}