We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4ae247d + 826cb27 commit f8807d7Copy full SHA for f8807d7
3 files changed
docker-compose.yml
@@ -1,11 +1,15 @@
1
2
services:
3
runner:
4
- image: ghcr.io/evolutionary-algorithms-on-click/runner:main
+ # image: ghcr.io/evolutionary-algorithms-on-click/runner:main
5
+ build:
6
+ context: .
7
+ dockerfile: Dockerfile
8
environment:
9
COCKROACHDB_URL : postgresql://root@host.docker.internal:26257/defaultdb?sslmode=disable
10
MINIO_URL : host.docker.internal:9000
- MINIO_ACCESS_KEY : <minio-key>
- MINIO_SECRET_KEY : <minio-pass>
- RABBITMQ_URL : amqp://<user>:<password>@host.docker.internal:5672/
11
- RABBITMQ_QUEUE: <task_queue_name>
+ MINIO_ACCESS_KEY : minioadmin
12
+ MINIO_SECRET_KEY : minioadmin
13
+ RABBITMQ_URL : amqp://user:password@host.docker.internal:5672/
14
+ RABBITMQ_QUEUE: task_queue
15
+ WEBSOCKET_LOG_URL: ws://host.docker.internal:5002/live
0 commit comments