Skip to content

Commit 8a3258e

Browse files
Fix docker compose.
1 parent a10a0ee commit 8a3258e

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/dev.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
GOOGLE__KEYFILE: ${{ secrets.GOOGLE__KEYFILE }}
4545

4646
- name: Test - Start Compose
47-
run: docker-compose up -d
47+
run: docker compose up -d
4848
working-directory: tools/TestSuite
4949

5050
- name: Test - RUN
@@ -87,7 +87,7 @@ jobs:
8787

8888
- name: Test - Cleanup
8989
if: always()
90-
run: docker-compose down
90+
run: docker compose down
9191
working-directory: tools/TestSuite
9292

9393
- name: Publish - Calculate Version

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
GOOGLE__KEYFILE: ${{ secrets.GOOGLE__KEYFILE }}
3939

4040
- name: Test - Start Compose
41-
run: docker-compose up -d
41+
run: docker compose up -d
4242
working-directory: tools/TestSuite
4343

4444
- name: Test - RUN
@@ -80,7 +80,7 @@ jobs:
8080

8181
- name: Test - Cleanup
8282
if: always()
83-
run: docker-compose down
83+
run: docker compose down
8484
working-directory: tools/TestSuite
8585

8686
- name: Publish - Get Major Version

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Before you install it, try it out at https://app.notifo.io
4949

5050
### Install it using the docker image
5151

52-
docker images are available: https://hub.docker.com/r/squidex/notifo, you can try the [docker-compose](deployment/docker-compose/docker-compose.yml) file.
52+
docker images are available: https://hub.docker.com/r/squidex/notifo, you can try the [docker compose](deployment/docker compose/docker compose.yml) file.
5353

5454
Read more about the installation in the [wiki](https://github.com/notifo-io/notifo/wiki/Installation).
5555

deployment/docker-compose/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Notifo needs https. This is a little bit tricky on localhost.
88

99
Caddy is used as a reverse proxy and also creates the certificates. Usually lets-encrypt is used for that, but for localhost we need to switch to a local certificate authority.
1010

11-
Therefore you have to comment out the following line in `docker-compose.yml`:
11+
Therefore you have to comment out the following line in `docker compose.yml`:
1212

1313
```yml
1414
# - SITE_SETTINGS="tls internal"
@@ -18,6 +18,6 @@ Therefore you have to comment out the following line in `docker-compose.yml`:
1818

1919
Caddy usually installs the root certificate, but this is not available on docker. Therefore we have to install the root certificate manually. First download the certificate from the docker container:
2020

21-
docker cp docker-compose-notifo_proxy-1:/data/caddy/pki/authorities/local/root.crt .
21+
docker cp docker compose-notifo_proxy-1:/data/caddy/pki/authorities/local/root.crt .
2222

2323
Next install the certificate to the **trusted root authorities store**. You might need to restart chrome after that.

0 commit comments

Comments
 (0)