-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: update omni template so docs are easier
Uses shell veriables so the template can be fed through envsubst to help people get started faster. Signed-off-by: Justin Garrison <[email protected]>
- Loading branch information
Showing
3 changed files
with
29 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,20 @@ | ||
## Omni On-Prem Compose File | ||
|
||
- Copy `env.template` and edit all fields necessary to match local paths to keys, domain names, etc. | ||
- Run docker compose, supplying the environment file edited above: `docker compose --env-file <path-to-env> up -d` | ||
Follow the full documentation in the [Omni docs](https://omni.siderolabs.com/how-to-guides/self_hosted/index). | ||
|
||
The template requires the following environment variables to be set (change these for your environment): | ||
|
||
```bash | ||
OMNI_VERSION=v0.42.0 | ||
OMNI_ACCOUNT_UUID=$(uuidgen) | ||
OMNI_DOMAIN_NAME=omni.siderolabs.com | ||
OMNI_WG_IP=10.10.1.100 | ||
[email protected] | ||
AUTH0_CLIENT_ID=xxxyyyzzz | ||
AUTH0_DOMAIN=dev-aaabbbccc.us.auth0.com | ||
``` | ||
|
||
You may also want to update certificate paths, etcd storage, and other settings. | ||
|
||
- Copy `env.template` and edit all fields necessary | ||
- Run docker compose, supplying the environment file edited above: `docker compose --env-file <path-to-env> up -d` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
name: omni-on-prem | ||
version: '3' | ||
services: | ||
omni: | ||
container_name: omni | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters