33 lines
899 B
YAML
33 lines
899 B
YAML
# docker-compose -f docker-compose-pebble.yaml up
|
|
# curl --request POST --data '{"ip":"192.168.5.2"}' http://localhost:8055/set-default-ipv4
|
|
# HTTPS port should be 5001
|
|
# Directory https://localhost:14000/dir
|
|
|
|
version: '3'
|
|
services:
|
|
pebble:
|
|
image: letsencrypt/pebble:latest
|
|
command: pebble -config /test/config/pebble-config.json -strict -dnsserver 10.30.50.3:8053
|
|
ports:
|
|
- 14000:14000 # HTTPS ACME API
|
|
- 15000:15000 # HTTPS Management API
|
|
networks:
|
|
acmenet:
|
|
ipv4_address: 10.30.50.2
|
|
challtestsrv:
|
|
image: letsencrypt/pebble-challtestsrv:latest
|
|
command: pebble-challtestsrv -defaultIPv6 "" -defaultIPv4 10.30.50.3
|
|
ports:
|
|
- 8055:8055 # HTTP Management API
|
|
networks:
|
|
acmenet:
|
|
ipv4_address: 10.30.50.3
|
|
|
|
networks:
|
|
acmenet:
|
|
driver: bridge
|
|
ipam:
|
|
driver: default
|
|
config:
|
|
- subnet: 10.30.50.0/24
|