-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
47 lines (47 loc) · 1.23 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
version: "3"
services:
golang1.11:
container_name: golang1.11
build: ./docker/golang1.11
tty: true
environment:
- GO111MODULE=on
volumes:
- ./:/go/src/github.com/nattokin/go-backlog
working_dir: /go/src/github.com/nattokin/go-backlog
golang1.12:
container_name: golang1.12
build: ./docker/golang1.12
tty: true
environment:
- GO111MODULE=on
volumes:
- ./:/go/src/github.com/nattokin/go-backlog
working_dir: /go/src/github.com/nattokin/go-backlog
golang1.13:
container_name: golang1.13
build: ./docker/golang1.13
tty: true
environment:
- GO111MODULE=on
volumes:
- ./:/go/src/github.com/nattokin/go-backlog
working_dir: /go/src/github.com/nattokin/go-backlog
golang1.14:
container_name: golang1.14
build: ./docker/golang1.14
tty: true
environment:
- GO111MODULE=on
volumes:
- ./:/go/src/github.com/nattokin/go-backlog
working_dir: /go/src/github.com/nattokin/go-backlog
golang:
container_name: golang
build: ./docker/golang
tty: true
environment:
- GO111MODULE=on
volumes:
- ./:/go/src/github.com/nattokin/go-backlog
working_dir: /go/src/github.com/nattokin/go-backlog