Fix(NOISSUE): Fix docker compose file example in README.md
In README.md is an example docker-compose.yaml file that can be improved
in two points
- The "version" top level element is obsolete, see
https://docs.docker.com/reference/compose-file/version-and-name/
- The "command" element contains a superflous "pebble" that prevents the
following parameters from being parsed. (In the included
docker-compose.yaml, the "command" element is already correct, see
e08dd94e72/docker-compose.yml (L5)
for comparison.)
This commit is contained in:
parent
e08dd94e72
commit
54f2840b8e
|
|
@ -134,12 +134,10 @@ Pebble releases are published as Docker images to the
|
|||
With a docker-compose file:
|
||||
|
||||
```yaml
|
||||
version: '3'
|
||||
|
||||
services:
|
||||
pebble:
|
||||
image: ghcr.io/letsencrypt/pebble:latest
|
||||
command: pebble -config /test/my-pebble-config.json
|
||||
command: -config /test/my-pebble-config.json
|
||||
ports:
|
||||
- 14000:14000 # ACME port
|
||||
- 15000:15000 # Management port
|
||||
|
|
|
|||
Loading…
Reference in New Issue