Compare commits

...

2 Commits

Author SHA1 Message Date
Mike Holloway
d3d0abdfdc Manually copying ssl files to build root 2024-08-19 17:07:44 -04:00
Mike Holloway
ae2f62bf7c Add epel repo role 2024-08-19 16:49:23 -04:00
3 changed files with 4 additions and 2 deletions

View File

@ -33,6 +33,7 @@ A containerized Wordpress, MySQL stack using [this official upstream project Doc
---
#### docker-compose.yml
##### To Do
- `certbot certonly -d equilibrateit.com -d equilibrateit.ca`
- mysql 8.1
- Investigate php-fpm arch?

View File

@ -5,4 +5,5 @@
roles:
- podman-host
- repo-epel
- certbot

View File

@ -1,7 +1,7 @@
FROM wordpress:6.6.1-php8.2-apache
COPY /etc/letsencrypt/live/equilibrateit.com/privkey.pem /etc/ssl/certs/
COPY /etc/letsencrypt/live/equilibrateit.com/fullchain.pem /etc/ssl/private/
COPY ./fullchain.pem /etc/ssl/certs/
COPY ./privkey.pem /etc/ssl/private/
RUN set -eux; \
{ \