Attempt to fix the numbering.

This commit is contained in:
Hyperling 2023-07-06 06:13:26 -07:00
parent dbf350607b
commit 0757cc340c

View File

@ -1,39 +1,39 @@
# Setup Instructions # Setup Instructions
How to first begin using this subproject. How to first begin using this subproject.
1. Move to this directory. 1. Move to this directory.
``` ```
cd $DOCKER_HOME/Config/ReverseProxy $ cd $DOCKER_HOME/Config/ReverseProxy
``` ```
1. Run the placeholder certificate program. 1. Run the placeholder certificate program.
``` ```
create_placeholder_certs.sh # create_placeholder_certs.sh
``` ```
1. Build the project. This also needs done any time `./config/conf.d/*` changes. 1. Build the project. This also needs done any time `./config/conf.d/*` changes.
``` ```
docker compose build # docker compose build
``` ```
1. Start the project. 1. Start the project.
``` ```
docker compose up -d # docker compose up -d
``` ```
1. Verify it started correctly, no configuration file errors. 1. Verify it started correctly, no configuration file errors.
``` ```
docker compose logs reverseproxy-app-1 # docker compose logs reverseproxy-app-1
docker compose logs reverseproxy-certbot-1 # docker compose logs reverseproxy-certbot-1
``` ```
# Other Commands # Other Commands
## Stop ## Stop
If you need to halt the project you may use either stop or down. If you need to halt the project you may use either stop or down.
``` ```
docker compose stop # docker compose stop
docker compose down # docker compose down
``` ```
## Upgrade ## Upgrade
Upgrading the applications should be as easy as this: Upgrading the containers should be as easy as this:
``` ```
docker compose down # docker compose down
docker compose pull # docker compose pull
docker compose build # docker compose build
docker compose up -d # docker compose up -d
``` ```