CI: isolate compose projects and remove runner container conflicts
Some checks failed
CI / lint (pull_request) Failing after 6s
CI / typecheck (pull_request) Failing after 6s
CI / tests (pull_request) Failing after 8s

This commit is contained in:
Codex_B
2026-02-28 12:56:44 +00:00
parent ebdf20e708
commit 06be5d6752
4 changed files with 31 additions and 16 deletions

View File

@@ -1,7 +1,6 @@
services:
web:
build: .
container_name: nohype-web
command: python manage.py runserver 0.0.0.0:8000
volumes:
- .:/app
@@ -24,13 +23,10 @@ services:
db:
image: postgres:16-alpine
container_name: nohype-db
environment:
POSTGRES_DB: nohype
POSTGRES_USER: nohype
POSTGRES_PASSWORD: nohype
ports:
- "5545:5432"
volumes:
- nohype_pg:/var/lib/postgresql/data