You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
-
# Traefik mkcert
1
+
# Prvious SSL
2
2
3
3
## Overview
4
4
5
-
This is a Docker image designed for development purposes. It automatically generates SSL certificates for your local projects using mkcert. This setup is optimized for use with Traefik and serves as an alternative to Let's Encrypt, which does not support local domains such as `.test`, `.local`, `.docker`, etc.
5
+
This is a Docker image designed for development purposes. It automatically generates SSL certificates for your local projects using node-forge. This setup is optimized for use with Traefik and serves as an alternative to Let's Encrypt, which does not support local domains such as `.test`, `.local`, `.docker`, etc.
6
6
7
7
## Docker Image
8
8
9
-
The image: `ghcr.io/munezaclovis/mkcert`
9
+
The image: `ghcr.io/prvious/ssl`
10
10
11
11
### Configuration example
12
12
@@ -21,8 +21,8 @@ services:
21
21
volumes:
22
22
- './dynamic:/etc/traefik'
23
23
24
-
mkcert:
25
-
image: ghcr.io/munezaclovis/mkcert
24
+
ssl:
25
+
image: ghcr.io/prvious/ssl
26
26
volumes:
27
27
- './dynamic/certs:/app/files/certs'# Location for generated certificates
28
28
- './dynamic/ca:/app/files/ca'# Directory for rootCA files used to sign certificates
@@ -35,11 +35,11 @@ services:
35
35
36
36
## Usage
37
37
38
-
If you want to generate SSL certificates for a specific service or container, even if it resides in another folder or project, you can still use the mkcert container. Simply ensure that the appropriate directories are mounted and the `mkcert.domains` and `traefik.enable=true` label is configured correctly for the target service.
38
+
If you want to generate SSL certificates for a specific service or container, even if it resides in another folder or project, you can still use the prvious/ssl container. Simply ensure that the appropriate directories are mounted and the `prvious.ssl.domains` and `prvious.ssl.enable=true` label is configured correctly for the target service.
@@ -65,7 +65,7 @@ To access the generated files, mount the `/app/files/` directory. Within this di
65
65
66
66
## Environment Variables
67
67
68
-
Since the mkcert image doesn’t know where the certificates will be mounted in Traefik, you MUST provide the `CERT_DIR` variable. This variable is used to construct the full path when generating the `tls.yml` file, ensuring Traefik can locate and load the certificates.
68
+
Since the prvious/ssl image doesn’t know where the certificates will be mounted in Traefik, you MUST provide the `CERT_DIR` variable. This variable is used to construct the full path when generating the `tls.yml` file, ensuring Traefik can locate and load the certificates.
0 commit comments