Skip to content

Commit f8807d7

Browse files
Merge pull request #3 from Evolutionary-Algorithms-On-Click/live-stream
Implement live streaming of logs via WebSocket
2 parents 4ae247d + 826cb27 commit f8807d7

3 files changed

Lines changed: 402 additions & 161 deletions

File tree

docker-compose.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11

22
services:
33
runner:
4-
image: ghcr.io/evolutionary-algorithms-on-click/runner:main
4+
# image: ghcr.io/evolutionary-algorithms-on-click/runner:main
5+
build:
6+
context: .
7+
dockerfile: Dockerfile
58
environment:
69
COCKROACHDB_URL : postgresql://root@host.docker.internal:26257/defaultdb?sslmode=disable
710
MINIO_URL : host.docker.internal:9000
8-
MINIO_ACCESS_KEY : <minio-key>
9-
MINIO_SECRET_KEY : <minio-pass>
10-
RABBITMQ_URL : amqp://<user>:<password>@host.docker.internal:5672/
11-
RABBITMQ_QUEUE: <task_queue_name>
11+
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

Comments
 (0)