mirror of
https://github.com/DRYTRIX/TimeTracker.git
synced 2026-05-20 13:20:38 -05:00
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:
@@ -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"]
|
||||
Reference in New Issue
Block a user