Skip to content

Reload Secrets & Configuration

With docker

  1. Edit .env on the host machine (next to docker-compose.yml).
  2. Recreate the container so new environment variables are injected:
    docker compose up --build --force-recreate -d
    
  3. Then go to http://127.0.0.1:5000 and use Cyberbro.

Without docker

  1. Edit .env (or exported environment variables) with the updated values.
  2. Restart your gunicorn process or service (e.g. systemctl restart cyberbro-service or you can use supervisord which is probably the best option to run without docker).
  3. Then go to http://127.0.0.1:5000 and use Cyberbro.