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