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:
Falko Flessner 2024-10-16 14:26:52 +02:00
parent e08dd94e72
commit 54f2840b8e
1 changed files with 1 additions and 3 deletions

View File

@ -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