-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathdocker-compose.yml
46 lines (38 loc) · 1 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
version: '3'
services:
rubynode26:
build: 2-6/stretch/.
image: ruby-node:2-6
command: ls -la /usr/local/bin
rubynode26slim:
build: 2-6/stretch-slim/.
image: ruby-node:2-6-slim
command: ls -la /usr/local/bin
rubynode26alpine:
build: 2-6/alpine/.
image: ruby-node:2-6-alpine
command: ls -la /usr/local/bin
rubynode-2-8:
build: 2-8/stretch/.
image: ruby-node:2-8
command: ls -la /usr/local/bin
rubynode-2-8-slim:
build: 2-8/stretch-slim/.
image: ruby-node:2-8-slim
command: ls -la /usr/local/bin
rubynode-2-8-alpine:
build: 2-8/alpine/.
image: ruby-node:2-8-alpine
command: ls -la /usr/local/bin
rubynode-2-10:
build: 2-10/stretch/.
image: ruby-node:2-10
command: ls -la /usr/local/bin
rubynode-2-10-slim:
build: 2-10/stretch-slim/.
image: ruby-node:2-10-slim
command: ls -la /usr/local/bin
rubynode-2-10-alpine:
build: 2-10/alpine/.
image: ruby-node:2-10-alpine
command: ls -la /usr/local/bin