6 lines
239 B
Bash
Executable File
6 lines
239 B
Bash
Executable File
#!/usr/bin/env bash
|
|
mkdir -p ssl
|
|
openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout ssl/localhost.key -out ssl/localhost.crt -subj "/C=US/ST=YourState/L=YourCity/O=YourOrganization/CN=localhost"
|
|
|
|
docker buildx build -t my-httpd .
|