-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
35 lines (32 loc) · 857 Bytes
/
docker-compose.yml
File metadata and controls
35 lines (32 loc) · 857 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
version: "3"
services:
parseconfig: &DEFAULTS
image: "parseconfig:dev"
build:
context: .
dockerfile: docker/Dockerfile.dev
hostname: parseconfig
privileged: true
stdin_open: true
tty: true
volumes:
- '.:/src'
working_dir: '/src'
parseconfig-rb30:
<<: *DEFAULTS
image: "parseconfig:dev-rb30"
build:
context: .
dockerfile: docker/Dockerfile.dev-rb30
parseconfig-rb27:
<<: *DEFAULTS
image: "parseconfig:dev-rb27"
build:
context: .
dockerfile: docker/Dockerfile.dev-rb27
parseconfig-rb26:
<<: *DEFAULTS
image: "parseconfig:dev-rb26"
build:
context: .
dockerfile: docker/Dockerfile.dev-rb26