-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
51 lines (45 loc) · 1.04 KB
/
docker-compose.yml
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
43
44
45
46
47
48
49
50
51
version: '2'
volumes:
go_path:
services:
moxie:
build:
context: .
dockerfile: environments/Dockerfile.dev
volumes:
- go_path:/go
- .:/go/src/github.com/placer14/moxie
ports:
- "8080:8080"
entrypoint: go run moxie.go
http_one:
build:
context: .
dockerfile: environments/Dockerfile.dev
volumes:
- go_path:/go
- .:/go/src/github.com/placer14/moxie
entrypoint: go run tools/httpecho.go
command: --port 8001
http_two:
build:
context: .
dockerfile: environments/Dockerfile.dev
volumes:
- go_path:/go
- .:/go/src/github.com/placer14/moxie
entrypoint: go run tools/httpecho.go
command: --port 8002
http_three:
build:
context: .
dockerfile: environments/Dockerfile.dev
volumes:
- go_path:/go
- .:/go/src/github.com/placer14/moxie
entrypoint: go run tools/httpecho.go
command: --port 8000
websocket_one:
build:
context: tools/websocket_echo_server
dockerfile: Dockerfile