-
Notifications
You must be signed in to change notification settings - Fork 40
/
docker-compose.yml
79 lines (72 loc) · 1.95 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
version: '3.7'
services:
debian-sid:
# build and run tests in a debian sid container
image: ${DOCKER_REGISTRY}/mod-h2-debian-sid:0.0.1
container_name: mod-h2-debian-sid
build:
context: .
dockerfile: docker/debian-sid/Dockerfile
labels:
- "description=mod_h2 debian sid server"
expose:
- "42001"
- "42002"
volumes:
- mod-h2-debian-sid-data:/apache-httpd/data
ports:
- "42001"
- "42002"
archlinux:
# build and run tests in a debian sid container
image: ${DOCKER_REGISTRY}/mod-h2-archlinux:0.0.1
container_name: mod-h2-archlinux
build:
context: .
dockerfile: docker/archlinux/Dockerfile
labels:
- "description=mod_h2 archlinux server"
expose:
- "42001"
- "42002"
volumes:
- mod-h2-archlinux-data:/apache-httpd/data
ports:
- "42001"
- "42002"
ubuntu-focal:
# build and run tests in a ubuntu-focal container
image: ${DOCKER_REGISTRY}/mod-h2-ubuntu-focal:0.0.1
container_name: mod-h2-ubuntu-focal
build:
context: .
dockerfile: docker/ubuntu-focal/Dockerfile
labels:
- "description=mod_h2 ubuntu-focal server"
expose:
- "42001"
- "42002"
volumes:
- mod-h2-ubuntu-focal-data:/apache-httpd/data
ports:
- "42001"
- "42002"
volumes:
mod-h2-debian-sid-data:
name: mod-h2-debian-sid-data
labels:
- "description=debian sid data for mod_h2"
mod-h2-archlinux-data:
name: mod-h2-archlinux-data
labels:
- "description=archlinux data for mod_h2"
mod-h2-ubuntu-focal-data:
name: mod-h2-ubuntu-focal-data
labels:
- "description=ubuntu-focal data for mod_h2"