This commit is contained in:
2026-03-21 22:08:36 -03:00
parent c377363943
commit b304bd0af9
3 changed files with 16 additions and 1 deletions

1
.gitignore vendored
View File

@@ -1 +0,0 @@
docker-compose.yml

5
build-deploy.sh Normal file
View File

@@ -0,0 +1,5 @@
#!/bin/bash
git pull
docker build -t rendiciones:latest .
docker compose up -d

11
docker-compose.yml Normal file
View File

@@ -0,0 +1,11 @@
name: rendiciones
services:
rendiciones:
ports:
- 5001:5000
volumes:
- YOUR_PATH/rendiciones/db:/app/db
- YOUR_PATH/rendiciones/static/cache:/app/static/cache
container_name: rendiciones-server
image: rendiciones:latest
restart: unless-stopped