Skip to content

Commit

Permalink
fixed versioning for first release
Browse files Browse the repository at this point in the history
  • Loading branch information
roman committed Jul 16, 2023
1 parent 76c7cc6 commit 0063054
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@ OR
"CN_as_SAN": "false",
"CA": "false",
"SANs": [
{"name": "127.0.0.1"},
{"name": "127.0.1.1"},
{"name": "10.0.0.1"}
{"name": "localhost"},
{"ip": "127.0.1.1"},
{"ip": "10.0.0.1"}
]
},
{
"CN": "me.at.home",
"SANs": [
{"name": "10.0.0.2"}
{"ip": "10.0.0.2"}
]
}
]
Expand All @@ -84,7 +84,7 @@ Description of the fields:
docker run --rm \
-v $(pwd)/hosts.txt:/opt/certs/hosts.txt \
-v $(pwd)/certs:/opt/certs/current \
schmitzi/openssl-alpine-j11:3.1.8
schmitzi/openssl-alpine-j11:1.0.0
```
* The following optional parameters can be provided as environment variables using `-e`:

Expand Down
2 changes: 1 addition & 1 deletion build_docker_image.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env bash

docker build ./scripts -t schmitzi/openssl-alpine-j11:3.1.8 -f Dockerfile
docker build ./scripts -t schmitzi/openssl-alpine-j11:1.0.0 -f Dockerfile

0 comments on commit 0063054

Please sign in to comment.