mirror of
https://github.com/DRYTRIX/TimeTracker.git
synced 2026-05-18 04:08:48 -05:00
1469a565de
- 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
11 lines
244 B
Docker
11 lines
244 B
Docker
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"]
|