Skip to content

Commit ddbc6be

Browse files
Fix(NOISSUE): Fix docker compose file example in README.md (#475)
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 https://github.com/letsencrypt/pebble/blob/e08dd94e723a0e8d005d7c6149a8666e4bf5d877/docker-compose.yml#L5 for comparison.)
1 parent e08dd94 commit ddbc6be

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,12 +134,10 @@ Pebble releases are published as Docker images to the
134134
With a docker-compose file:
135135

136136
```yaml
137-
version: '3'
138-
139137
services:
140138
pebble:
141139
image: ghcr.io/letsencrypt/pebble:latest
142-
command: pebble -config /test/my-pebble-config.json
140+
command: -config /test/my-pebble-config.json
143141
ports:
144142
- 14000:14000 # ACME port
145143
- 15000:15000 # Management port

0 commit comments

Comments
 (0)