Fix domains

This commit is contained in:
Luke Murphy 2021-03-01 21:41:40 +01:00
parent e4a0487ca0
commit 3f75dce1d7
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 8 additions and 8 deletions

View File

@ -90,20 +90,20 @@ $ abra app new --server example.com --domain traefik.example.com traefik
You will want to take a look at your generated configuration and tweak the `LETS_ENCRYPT_EMAIL` value: You will want to take a look at your generated configuration and tweak the `LETS_ENCRYPT_EMAIL` value:
```bash ```bash
$ abra app traefik.example.zone config $ abra app traefik.example.com config
``` ```
This is the required environment variables that you can configure and are injected into the app configuration when deployed. This is the required environment variables that you can configure and are injected into the app configuration when deployed.
``` ```
$ abra app traefik.example.zone deploy $ abra app traefik.example.com deploy
``` ```
We can then check that everything came up as expected. We can then check that everything came up as expected.
```bash ```bash
$ abra app traefik.example.zone ps # status check $ abra app traefik.example.com ps # status check
$ abra app traefik.example.zone logs # logs watch $ abra app traefik.example.com logs # logs watch
``` ```
## Deploy Nextcloud ## Deploy Nextcloud
@ -132,14 +132,14 @@ $ abra app cloud.example.com secret generate --all
Then we can deploy the Nextcloud. Then we can deploy the Nextcloud.
```bash ```bash
$ abra app cloud.example.zone deploy $ abra app cloud.example.com deploy
``` ```
And once again, we can watch to see that things come up correctly. And once again, we can watch to see that things come up correctly.
```bash ```bash
$ abra app nextcloud.example.zone ps # status check $ abra app nextcloud.example.com ps # status check
$ abra app nextcloud.example.zone logs # logs watch $ abra app nextcloud.example.com logs # logs watch
``` ```
!!! note !!! note
@ -147,7 +147,7 @@ $ abra app nextcloud.example.zone logs # logs watch
Since Nextcloud takes some time to come up live, you can run the `ps` command under `watch` like so. Since Nextcloud takes some time to come up live, you can run the `ps` command under `watch` like so.
```bash ```bash
$ watch abra app nextcloud.example.zone ps $ watch abra app nextcloud.example.com ps
``` ```
And you can wait until you see that all containers have the "Running" state. And you can wait until you see that all containers have the "Running" state.