diff options
| -rw-r--r-- | README.md | 3 | ||||
| -rw-r--r-- | docker-compose.yml | 4 |
2 files changed, 3 insertions, 4 deletions
@@ -84,6 +84,9 @@ OPENDC_ROOT_DIR=/your/path/to/opendc OPENDC_SERVER_BASE_URL=http://localhost:8081 ``` +Afterwards, you should also create a `traces/` directory in which you place the VM and workflow traces you want to +experiment with. + If you plan to publicly deploy, please also tweak the other settings. In that case, also check the `docker-compose.yml` for further instructions. Now, start the server: diff --git a/docker-compose.yml b/docker-compose.yml index 4b9856e4..6b5c979c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -51,8 +51,6 @@ services: - type: volume source: results-volume target: /results - # Override to root as the simulator won't be able to access the volume otherwise - user: root environment: - OPENDC_DB - OPENDC_DB_USERNAME @@ -76,7 +74,6 @@ services: # Comment out for public deployment ports: - "27017:27017" - # Uncomment for persistent deployment volumes: - mongo-volume:/data/db @@ -95,7 +92,6 @@ services: volumes: mongo-volume: - external: false results-volume: networks: |
