@@ -14,6 +14,10 @@ There are _3 Docker server_ configurations you can use for testing:
1414
1515** Note** : All commands are run from the root directory of the repository.
1616
17+ !!! info "Information" This tutorial has been updated to use ` docker compose `
18+ instead of ` docker-compose ` . If you have an older version of Docker that does
19+ not support ` docker compose ` , you can continue to use ` docker-compose ` commands.
20+
17211 . Create an external Docker network named ` cloudbuild ` :
1822
1923 ```
@@ -84,7 +88,7 @@ There are _3 Docker server_ configurations you can use for testing:
8488 [HAPI FHIR server](https://github.com/google/fhir-data-pipes/blob/master/docker/sink-compose.yml):
8589
8690 ```shell
87- docker- compose -f ./docker/sink-compose.yml up --force-recreate -d
91+ docker compose -f ./docker/sink-compose.yml up --force-recreate -d
8892 ```
8993
9094 The base URL for this server is `http://localhost:8098/fhir`.
@@ -96,17 +100,17 @@ username "admin" and password "Admin123". The Docker image includes the required
96100FHIR2 module and demo data. Edit `docker/openmrs-compose.yaml` to change the
97101default port.
98102
99- **Note:** If `docker- compose` fails, you may need to adjust file permissions. In
103+ **Note:** If `docker compose` fails, you may need to adjust file permissions. In
100104particular if the permissions on `mysqld.cnf` is not right, the `datadir` set in
101105this file will not be read by MySQL and it will cause OpenMRS to require its
102106`initialsetup` (which is not needed since the MySQL image already has all the
103107data and tables needed):
104108
105109```shell
106- $ docker- compose -f docker/openmrs-compose.yaml down -v
110+ $ docker compose -f docker/openmrs-compose.yaml down -v
107111$ chmod a+r docker/mysql-build/mysqld.cnf
108112$ chmod -R a+r ./utils
109- $ docker- compose -f docker/openmrs-compose.yaml up
113+ $ docker compose -f docker/openmrs-compose.yaml up
110114```
111115
112116In order to see the demo data in OpenMRS you must rebuild the search index. In
0 commit comments