Initial commit

This commit is contained in:
2026-03-07 00:34:25 +01:00
commit 3e7c66d841
10 changed files with 990 additions and 0 deletions

12
docker-compose.yml Normal file
View File

@@ -0,0 +1,12 @@
services:
votify:
build: .
container_name: votify-web
ports:
- "5000:5000"
environment:
- PASSWORD=test # Remove or leave empty to disable auth
volumes:
- ./downloads:/downloads
- ./config:/config
restart: unless-stopped