feat: configure docker image deployment with Gitea Container Registry

- Replace local build with pre-built image from Gitea registry
- Add docker-compose.override.yml for local development with Dockerfile
- Add .dockerignore to exclude unnecessary files from build
- Update image reference to gitea.onecluster.org/oneteam/don_confiao_backend:latest

Refs #37
This commit is contained in:
mono
2026-03-30 20:33:36 -05:00
parent 1d7beadf96
commit 6473a8348c
3 changed files with 29 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
services:
django:
build:
context: ./
dockerfile: django.Dockerfile
volumes:
- ./tienda_ilusion:/app/
env_file:
- .env
ports:
- "7000:9090"