-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
53 lines (49 loc) · 1.33 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
version: '3.7'
services:
debian-sid:
# build and run tests in a debian sid container
image: ${DOCKER_REGISTRY}/mod-tls-debian-sid:0.0.1
container_name: mod-tls-debian-sid
build:
context: .
dockerfile: docker/debian-sid/Dockerfile
labels:
- "description=mod_tls debian sid server"
expose:
- "5010"
- "5011"
volumes:
- mod-tls-debian-sid-data:/abetterinternet/data
ports:
- "5010"
- "5011"
ubuntu-focal:
# build and run tests in a debian sid container
image: ${DOCKER_REGISTRY}/mod-tls-ubuntu-focal:0.0.1
container_name: mod-tls-ubuntu-focal
build:
context: .
dockerfile: docker/ubuntu-focal/Dockerfile
labels:
- "description=mod_tls ubuntu-focal server"
expose:
- "5010"
- "5011"
volumes:
- mod-tls-ubuntu-focal-data:/abetterinternet/data
ports:
- "5010"
- "5011"
volumes:
mod-tls-debian-sid-data:
name: mod-tls-debian-sid-data
labels:
- "description=debian sid data for mod_tls"
mod-tls-ubuntu-focal-data:
name: mod-tls-ubuntu-focal-data
labels:
- "description=ubuntu-focal data for mod_tls"