From 09024bf0a00bf1a20dcc1304e37ae29e659b5a5a Mon Sep 17 00:00:00 2001 From: Laurent Leseigneur Date: Tue, 3 Apr 2018 13:21:30 +0200 Subject: [PATCH] Update content.md example with volume missed the `-p` arg in order to browse bonita portal --- bonita/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bonita/content.md b/bonita/content.md index 400c72e45..b93542f40 100644 --- a/bonita/content.md +++ b/bonita/content.md @@ -93,7 +93,7 @@ The Docker documentation is a good starting point for understanding the differen 1. Create a data directory on a suitable volume on your host system, e.g. `/my/own/datadir`. 2. Start your `%%REPO%%` container like this: - docker run --name some-%%REPO%% -v /my/own/datadir:/opt/bonita -d %%IMAGE%%:tag + docker run --name some-%%REPO%% -v /my/own/datadir:/opt/bonita -d -9 8080:8080 %%IMAGE%%:tag The `-v /my/own/datadir:/opt/bonita` part of the command mounts the `/my/own/datadir` directory from the underlying host system as `/opt/bonita` inside the container, where Bonita will deploy the bundle and write data files by default.