v1.0
All checks were successful
Build and Deploy Docker Image / build-and-push (push) Successful in 5m5s

working basic setup

- added profile picture upload
- fied a lot of errors with rabbitmq
- updated the "module" tables
- added experimental runner
This commit is contained in:
2026-05-24 22:15:30 +03:00
parent ea4d91f3bd
commit a571ef9c7a
19 changed files with 1776 additions and 329 deletions

View File

@@ -1,11 +1,10 @@
services:
quantum-backend:
build:
context: ./dockerfile_build
image: git.deowl.ru/vkrb/quantum_backend:0.1.0
environment:
PORT: 1656
extra_hosts:
- "auth.localhost:host-gateway"
MINIO_ACCESS_KEY: minioadmin
MINIO_SECRET_KEY: minioadmin
ports:
- 1656:1656
depends_on:
@@ -13,13 +12,13 @@ services:
condition: service_healthy
redis:
condition: service_started
minio:
condition: service_started
restart: unless-stopped
env_file: .env
redis:
image: "redis:alpine"
ports:
- "6379:6379"
restart: unless-stopped
db:
@@ -28,10 +27,28 @@ services:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: fastapi_db
ports:
- "5432:5432"
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 5s
timeout: 5s
retries: 5
volumes:
- postgresql:/var/lib/postgresql/18/main
# MinIO Object Storage
minio:
image: minio/minio:latest
container_name: experiment-minio
command: server /data --console-address ":9001"
environment:
- MINIO_ROOT_USER=minioadmin
- MINIO_ROOT_PASSWORD=minioadmin
restart: unless-stopped
volumes:
- minio-data:/data
volumes:
minio-data:
driver: local
postgresql:
driver: local