Commit a0be5ad0 authored by Kostis Trantzas's avatar Kostis Trantzas
Browse files

improve readme's readability

parent e4f45967
Loading
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -20,7 +20,6 @@ client.secret=admin
username=admin
password=admin
sourceApiEndpoint.url=http://localhost/tmf-api
serviceSpecification.uuid=487b9377-460d-4498-a8f3-a23cd7595b06
```

## Deployment
@@ -28,7 +27,7 @@ serviceSpecification.uuid=487b9377-460d-4498-a8f3-a23cd7595b06
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 {local path to config.properties}:/app/config.properties -v {local path to your expected, exported data folder}:/{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
```

## File Hierarchy Structure