Files
docker-apache-php/build.sh
T
2025-02-22 12:19:31 +01:00

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 .