To run the Docker container that exports the given Service Specification, use the following command, ensuring to mount the configuration file and target data folder:
```sh
docker run --rm-v/local/path/to/config.properties:/app/config.properties -v/local/path/to/your-expected-data-folder:/app/{uuid} labs.etsi.org:5050/osl/utilities/org.etsi.osl.util.service.specification.export:latest {uuid}
docker run --rm-v{localpathtoconfig.properties}:/app/config.properties -v{localpathtoyourexpected, exported datafolder}:/{uuid} labs.etsi.org:5050/osl/utilities/org.etsi.osl.util.service.specification.export:latest {uuid}
```
For example,
@@ -36,13 +35,13 @@ For example,
Windows:
```sh
docker run --rm-v C:\openslice\service-specification-exporting\src\main\resources\config.properties:/app/config.properties -v C:\openslice\service-specification-exporting:/app/66e2d9f5-0858-41ca-b67d-30cdba340be5 labs.etsi.org:5050/osl/utilities/org.etsi.osl.util.service.specification.export:latest 66e2d9f5-0858-41ca-b67d-30cdba340be5
docker run --rm-v C:\openslice\config.properties:/app/config.properties -v C:\openslice\my_exported_package:/83a1438b-db16-47ea-9d6a-8c0374574ed6 labs.etsi.org:5050/osl/utilities/org.etsi.osl.util.service.specification.export:latest 83a1438b-db16-47ea-9d6a-8c0374574ed6
```
Ubuntu:
```sh
docker run --rm-v$(pwd)/config.properties:/app/config.properties -v$(pwd)/my_package:/66e2d9f5-0858-41ca-b67d-30cdba340be5 labs.etsi.org:5050/osl/utilities/org.etsi.osl.util.service.specification.export:latest 66e2d9f5-0858-41ca-b67d-30cdba340be5
docker run --rm-v$(pwd)/config.properties:/app/config.properties -v$(pwd)/my_exported_package:/83a1438b-db16-47ea-9d6a-8c0374574ed6 labs.etsi.org:5050/osl/utilities/org.etsi.osl.util.service.specification.export:latest 83a1438b-db16-47ea-9d6a-8c0374574ed6