feat: improve Docker compose setup and HTTPS certificate generation

- Update docker-compose files with improved service configuration
- Add Dockerfile.certgen for automated certificate generation
- Enhance HTTPS auto-setup documentation
- Update Docker compose setup documentation
This commit is contained in:
Dries Peeters
2026-01-07 20:04:46 +01:00
parent 44b5a3ac16
commit 1469a565de
6 changed files with 31 additions and 10 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM alpine:latest
# Install openssl for certificate generation
RUN apk add --no-cache openssl
# Copy certificate generation script
COPY scripts/generate-certs.sh /generate-certs.sh
RUN chmod +x /generate-certs.sh
CMD ["/generate-certs.sh"]