1020 B

Initial Setup Instructions

How to first begin using this subproject.

  1. Move to this directory.
    $ cd $DOCKER_HOME/Config/ReverseProxy
    
  2. Run the placeholder certificate program.
    # create_placeholder_certs.sh
    
  3. Build the project. This also needs done any time ./config/conf.d/* changes.
    # docker compose build
    
  4. Start the project.
    # docker compose up -d
    
  5. Verify it started correctly, no configuration file errors.
    # docker compose logs reverseproxy-app-1
    # docker compose logs reverseproxy-certbot-1
    

Other Commands

Tasks which will also likely come up while using this subproject.

Stop

If you need to halt the system 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