2023-06-22 07:40:05 +00:00
|
|
|
# Reference
|
|
|
|
|
|
|
|
- https://www.firezone.dev/docs/deploy/docker
|
|
|
|
|
|
|
|
# Notes
|
|
|
|
|
2023-06-22 07:42:27 +00:00
|
|
|
1. Download the `docker-compose.yml` and `env.example` file from this repository.
|
|
|
|
2. Adjust the compose file to your needs.
|
|
|
|
3. Renamte the `env.example` file to `.env` and adjust to your needs. Especially change the default secrets!
|
|
|
|
5. Proceed by executing the below commands.
|
2023-06-22 07:40:05 +00:00
|
|
|
|
|
|
|
````
|
|
|
|
docker compose run --rm firezone bin/migrate
|
|
|
|
docker compose run --rm firezone bin/create-or-reset-admin
|
|
|
|
docker compose up -d
|
|
|
|
````
|
|
|
|
|
|
|
|
Note: This compose setup requires an already existing dockerized Traefik reverse proxy.
|