forked from behance/docker-base
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
49 lines (49 loc) · 1.04 KB
/
docker-compose.yml
File metadata and controls
49 lines (49 loc) · 1.04 KB
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
ubuntu:
build: .
ports:
- '8080:8080'
environment:
SERVER_LOG_MINIMAL: 1
SERVER_APP_NAME: docker-test-ubuntu
S6_KILL_FINISH_MAXTIME: 1
S6_KILL_GRACETIME: 1
alpine:
build: .
dockerfile: Dockerfile-alpine
ports:
- '8081:8080'
environment:
SERVER_LOG_MINIMAL: 1
SERVER_APP_NAME: docker-test-alpine
S6_KILL_FINISH_MAXTIME: 1
S6_KILL_GRACETIME: 1
centos:
build: .
dockerfile: Dockerfile-centos
ports:
- '8082:8080'
environment:
SERVER_LOG_MINIMAL: 1
SERVER_APP_NAME: docker-test-centos
S6_KILL_FINISH_MAXTIME: 1
S6_KILL_GRACETIME: 1
ubuntu17:
build: .
dockerfile: Dockerfile-ubuntu-17.10
ports:
- '8083:8080'
environment:
SERVER_LOG_MINIMAL: 1
SERVER_APP_NAME: docker-test-ubuntu-17.10
S6_KILL_FINISH_MAXTIME: 1
S6_KILL_GRACETIME: 1
ubuntu18:
build: .
dockerfile: Dockerfile-ubuntu-18.04
ports:
- '8084:8080'
environment:
SERVER_LOG_MINIMAL: 1
SERVER_APP_NAME: docker-test-ubuntu-18.04
S6_KILL_FINISH_MAXTIME: 1
S6_KILL_GRACETIME: 1