forked from skyformat99/example-noise
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-cloud.yml
More file actions
42 lines (36 loc) · 798 Bytes
/
Copy pathdocker-compose-cloud.yml
File metadata and controls
42 lines (36 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
version: '3.5'
services:
noise-sink:
image: yomorun/noise-sink:latest
container_name: noise-sink
restart: always
command: ["sh", "-c", "go run main.go"]
ports:
- "8000:8000"
networks:
- cloudnet
noise-flow:
image: yomorun/noise-flow:latest
container_name: noise-flow
restart: always
command: ["sh", "-c", "yomo run app.go -p 4242"]
networks:
- cloudnet
noise-zipper:
image: yomorun/noise-zipper:latest
container_name: noise-zipper
restart: always
command: ["sh", "-c", "yomo wf run workflow.yaml"]
ports:
- "9999:9999/udp"
links:
- noise-flow
- noise-sink
depends_on:
- noise-flow
- noise-sink
networks:
- cloudnet
networks:
cloudnet:
driver: bridge