-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0ed9e46
commit 176cd83
Showing
4 changed files
with
56 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Environment | ||
*.env | ||
!template.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# ================================================== | ||
# NGINX | ||
# ================================================== | ||
|
||
CERTS=~/Documents/.certs/deanayalon.com | ||
HTTP_PORT= | ||
|
||
|
||
# ================================================== | ||
# VERDACCIO | ||
# ================================================== | ||
|
||
VERDACCIO_ENV=0.9 | ||
|
||
# ! DEV VARIABLES WILL DEFAULT TO LIVE VALUES IF LEFT EMPTY | ||
# Defining different values will allow the dev container to run on the same machine without disturbing the live production server | ||
|
||
# The domain on which the service will be hosted | ||
VERDACCIO_DOMAIN= | ||
VERDACCIO_DEV_DOMAIN= | ||
|
||
# Mount paths | ||
## Will store users and packages | ||
VERDACCIO_STORAGE= | ||
VERDACCIO_DEV_STORAGE= | ||
## SSL certificates for HTTPS | ||
VERDACCIO_CERTS= | ||
VERDACCIO_DEV_CERTS= | ||
|
||
# Port mapping - Default: 4873 | ||
VERDACCIO_PORT=4873 | ||
VERDACCIO_DEV_PORT= | ||
|
||
# If using a proxy, define the port for the healthcheck to use | ||
# If no value is defined, the verdaccio port is used as a default value. (live/dev, respectively) | ||
VERDACCIO_PROXY_PORT=443 | ||
## The container healthcheck sends a request to https://DOMAIN:PROXY_PORT |
Submodule verdaccio
updated
5 files
+1 −1 | .gitignore | |
+0 −24 | defaults.env | |
+34 −9 | docker-compose.yml | |
+38 −18 | files/scripts/healthcheck.sh | |
+29 −0 | template.env |