Fix: eagerload series.sets i admin og API (MissingGreenlet i async mode)

This commit is contained in:
2026-07-01 22:15:14 +02:00
parent c0952a3bd3
commit 8361066f2f
20 changed files with 1075 additions and 554 deletions
+6 -6
View File
@@ -7,7 +7,7 @@ services:
POSTGRES_USER: pokedexter
POSTGRES_PASSWORD: pokedexter_secret
volumes:
- pgdata:/var/lib/postgresql/data
- pokedexter_pgdata:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U pokedexter"]
interval: 5s
@@ -15,8 +15,8 @@ services:
retries: 5
backend:
image: pokedexter-backend
build: ./backend
image: pokedexter-backend:latest
# build: ./backend
container_name: pokedexter-backend
environment:
DATABASE_URL: "postgresql+asyncpg://pokedexter:pokedexter_secret@db/pokedexter"
@@ -26,8 +26,8 @@ services:
condition: service_healthy
nginx:
image: pokedexter-nginx
build: ./nginx
image: pokedexter-nginx:latest
# build: ./nginx
container_name: pokedexter-nginx
ports:
- "8080:80"
@@ -35,4 +35,4 @@ services:
- backend
volumes:
pgdata:
pokedexter_pgdata: