Skip to content

Commit b191f40

Browse files
committed
Update READMEs to use docker compose instead of docker-compose
1 parent 9f69705 commit b191f40

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

desktop/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ To execute **integration test with Field Hub**, run
6464
$ npm run test:hub-integration --prefix desktop
6565
```
6666
67-
The Field Hub integration tests require installed Docker and docker-compose.
67+
The Field Hub integration tests require installed Docker.
6868
6969
## Packaging
7070
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Field Hub integration tests
22

3-
These integration tests require Docker/docker-compose to be installed on your system. A release version of Field Hub will be pulled from the Github container registry, see [docker-compose.yml](docker-compose.yml).
3+
These integration tests require Docker to be installed on your system. A release version of Field Hub will be pulled from the Github container registry, see [docker-compose.yml](docker-compose.yml).

publication/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Field Publication relies on several services:
1818

1919
The [docker-compose.yml](docker-compose.yml) defines all three services for development. For starting the dockerized services run:
2020
```
21-
docker-compose up
21+
docker compose up
2222
```
2323

2424
## 2. Running the setup

server/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ If you change the default CouchDB credentials in your `.env` file, make sure to
3030
Start a dockerized CouchDB:
3131

3232
```bash
33-
docker-compose up
33+
docker compose up
3434
```
3535

3636
Or, if you want to run docker in the background:
3737

3838
```bash
39-
docker-compose up -d
39+
docker compose up -d
4040
```
4141

4242
### Phoenix Server

server/deployment_example/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ _Note: if you want the files to be put somewhere else, you can do that by updati
5050
Run the application from the directory containing both files with:
5151

5252
```
53-
docker-compose up
53+
docker compose up
5454
```
5555

5656
This should run the application in the foreground and display logs for both services. The services can also be viewed in your webbrowser at port 80 (FieldHub service) and port 5984 (CouchDB service). For CouchDB's webinterface go to (..):5984/_utils/.
@@ -79,13 +79,13 @@ To run the application in production, you should do (atleast) 3 things:
7979
Afterwards stop and delete all previously created test containers.
8080

8181
```
82-
docker-compose down -v
82+
docker compose down -v
8383
```
8484

8585
Finally, we want to start everything in the background, using the detached `-d` option.
8686

8787
```
88-
docker-compose up -d
88+
docker compose up -d
8989
```
9090

9191
If you want to see which containers are now running there are several commands.

0 commit comments

Comments
 (0)