We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I can't launch
sh1man@sh1man-ubuntu:~/PycharmProjects/asr/hatchet$ docker compose up -d [+] Running 7/8 ✔ Container hatchet-hatchet-frontend-1 Running 0.0s ✔ Container hatchet-caddy-1 Running 0.0s ✔ Container hatchet-postgres-1 Healthy 3.7s ✔ Container hatchet-migration-1 Exited 13.8s ✔ Container hatchet-setup-config-1 Exited 13.8s ✔ Container hatchet-rabbitmq-1 Healthy 13.2s ✔ Container hatchet-hatchet-engine-1 Running 0.0s ⠙ Container hatchet-hatchet-api-1 Starting 0.1s Error response from daemon: failed to create task for container: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: error during container init: exec: "/hatchet/hatchet-backend": stat /hatchet/hatchet-backend: no such file or directory: unknown exit status 1
services: postgres: image: postgres:15.6 command: postgres -c 'max_connections=200' restart: unless-stopped hostname: "postgres" environment: - POSTGRES_USER=hatchet - POSTGRES_PASSWORD=hatchet - POSTGRES_DB=hatchet ports: - "5435:5432" volumes: - hatchet_postgres_data:/var/lib/postgresql/data healthcheck: test: ["CMD-SHELL", "pg_isready -d hatchet -U hatchet"] interval: 10s timeout: 10s retries: 5 start_period: 10s rabbitmq: image: "rabbitmq:3-management" hostname: "rabbitmq" restart: unless-stopped ports: - "5673:5672" # RabbitMQ - "15673:15672" # Management UI environment: RABBITMQ_DEFAULT_USER: "user" RABBITMQ_DEFAULT_PASS: "password" volumes: - "hatchet_rabbitmq_data:/var/lib/rabbitmq" - "hatchet_rabbitmq.conf:/etc/rabbitmq/rabbitmq.conf" # Configuration file mount healthcheck: test: ["CMD", "rabbitmqctl", "status"] interval: 10s timeout: 10s retries: 5 migration: image: ghcr.io/hatchet-dev/hatchet/hatchet-migrate:latest environment: DATABASE_URL: "postgres://hatchet:hatchet@postgres:5432/hatchet" depends_on: postgres: condition: service_healthy setup-config: image: ghcr.io/hatchet-dev/hatchet/hatchet-admin:latest command: /hatchet/hatchet-admin quickstart --skip certs --generated-config-dir /hatchet/config --overwrite=false environment: DATABASE_URL: "postgres://hatchet:hatchet@postgres:5432/hatchet" DATABASE_POSTGRES_PORT: "5432" DATABASE_POSTGRES_HOST: "postgres" SERVER_TASKQUEUE_RABBITMQ_URL: amqp://user:password@rabbitmq:5672/ SERVER_AUTH_COOKIE_DOMAIN: localhost:8080 SERVER_AUTH_COOKIE_INSECURE: "t" SERVER_GRPC_BIND_ADDRESS: "0.0.0.0" SERVER_GRPC_INSECURE: "t" SERVER_GRPC_BROADCAST_ADDRESS: localhost:7077 volumes: - hatchet_certs:/hatchet/certs - hatchet_config:/hatchet/config depends_on: migration: condition: service_completed_successfully rabbitmq: condition: service_healthy postgres: condition: service_healthy hatchet-engine: image: ghcr.io/hatchet-dev/hatchet/hatchet-engine:latest command: /hatchet/hatchet-engine --config /hatchet/config restart: unless-stopped depends_on: setup-config: condition: service_completed_successfully migration: condition: service_completed_successfully ports: - "7077:7070" environment: DATABASE_URL: "postgres://hatchet:hatchet@postgres:5432/hatchet" SERVER_GRPC_BIND_ADDRESS: "0.0.0.0" SERVER_GRPC_INSECURE: "t" volumes: - hatchet_certs:/hatchet/certs - hatchet_config:/hatchet/config hatchet-api: image: ghcr.io/hatchet-dev/hatchet/hatchet-api:latest command: /hatchet/hatchet-backend --config /hatchet/config restart: unless-stopped depends_on: setup-config: condition: service_completed_successfully migration: condition: service_completed_successfully environment: DATABASE_URL: "postgres://hatchet:hatchet@postgres:5432/hatchet" volumes: - hatchet_certs:/hatchet/certs - hatchet_config:/hatchet/config hatchet-frontend: image: ghcr.io/hatchet-dev/hatchet/hatchet-frontend:latest restart: unless-stopped caddy: image: caddy:2.7.6-alpine restart: unless-stopped ports: - 8080:8080 volumes: - ./Caddyfile:/etc/caddy/Caddyfile volumes: hatchet_postgres_data: hatchet_rabbitmq_data: hatchet_rabbitmq.conf: hatchet_config: hatchet_certs:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I can't launch
The text was updated successfully, but these errors were encountered: