feat: crud and backups are working

This commit is contained in:
2025-05-30 18:49:40 -04:00
parent 3ee136d52d
commit b8ce9ded76
19 changed files with 191 additions and 21 deletions
+10 -1
View File
@@ -11,13 +11,22 @@ services:
- postgres_data:/var/lib/postgresql/data
networks:
- app-network
backup:
build: ./backup
volumes:
- ./backups:/backups
- /var/run/docker.sock:/var/run/docker.sock
depends_on:
- db
networks:
- app-network
backend:
build: ./backend
volumes:
- ./backend/app:/app/app
environment:
DATABASE_URL: postgres://user:password@db:5432/mydatabase
DATABASE_URL: postgresql://user:password@db:5432/mydatabase
depends_on:
- db
ports: