-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
49 lines (49 loc) · 1.09 KB
/
docker-compose.yml
File metadata and controls
49 lines (49 loc) · 1.09 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
services:
ex_acme:
build:
context: .
environment:
ACME_DIRECTORY_URL: https://pebble:14000/dir
CHALLTESTSRV_URL: http://challtestsrv:8055
volumes:
- .:/app
- build_cache:/app/_build
- mix_cache:/app/deps
depends_on:
- pebble
- challtestsrv
networks:
acmenet:
ipv4_address: 10.161.23.2
pebble:
image: ghcr.io/letsencrypt/pebble:latest
command: -config test/config/pebble-config.json -strict -dnsserver 10.161.23.4:8053
environment:
PEBBLE_WFE_NONCEREJECT: "25"
PEBBLE_VA_SLEEPTIME: "1"
ports:
- 14000:14000
- 15000:15000
networks:
acmenet:
ipv4_address: 10.161.23.3
challtestsrv:
image: ghcr.io/letsencrypt/pebble-challtestsrv:latest
command: -defaultIPv6 "" -defaultIPv4 10.161.23.4
ports:
- 8055:8055
- 8053:8053
- 8443:8443
networks:
acmenet:
ipv4_address: 10.161.23.4
volumes:
build_cache:
mix_cache:
networks:
acmenet:
driver: bridge
ipam:
driver: default
config:
- subnet: 10.161.23.0/29