mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-21 21:57:56 +01:00
Update readme documentation.
This commit is contained in:
parent
c5dca51df9
commit
0920dab922
@ -9,7 +9,7 @@ There are multiple ways to run WiseMapping depending on your database configurat
|
|||||||
|
|
||||||
## Option 1: Running HSQL within the image storage
|
## Option 1: Running HSQL within the image storage
|
||||||
|
|
||||||
> $ docker run -it --rm -p 8080:8080 veigap/wisemapping:latest>
|
> $ docker run -it --rm -p 8080:8080 wisemapping/wisemapping:latest
|
||||||
|
|
||||||
Then, open your browser at `http://localhost:8888`. A default user is available for testing `test@wisemapping.com` and password `test`.
|
Then, open your browser at `http://localhost:8888`. A default user is available for testing `test@wisemapping.com` and password `test`.
|
||||||
|
|
||||||
@ -17,7 +17,19 @@ Then, open your browser at `http://localhost:8888`. A default user is available
|
|||||||
|
|
||||||
## Option 2: Running HSQL with mounted directory
|
## Option 2: Running HSQL with mounted directory
|
||||||
|
|
||||||
> $ docker run -it --rm -p 8080:8080 veigap/wisemapping:latest
|
Only one time, copy the empty default out of the container:
|
||||||
|
|
||||||
|
> $ mkdir your- db-dir-store-path
|
||||||
|
>
|
||||||
|
> $ docker run --name wiseapp -d --mount type=bind,source=your-db-dir-store-path,target=/var/lib/wise-db wisemapping/wisemapping:latest
|
||||||
|
>
|
||||||
|
> $ docker cp wiseapp:/var/lib/wisemapping/db your-db-dir-store-path
|
||||||
|
>
|
||||||
|
> $ docker stop wiseapp;docker rm wiseapp
|
||||||
|
|
||||||
|
Then, execute the container mounting tbe directory:
|
||||||
|
|
||||||
|
> $ docker run --mount type=bind,source=your-db-dir-store-path/db,target=/var/lib/wisemapping/db -it --rm -p 8080:8080 wisemapping/wisemapping:latest
|
||||||
|
|
||||||
## Option 3: External MySQL/PostgreSQL
|
## Option 3: External MySQL/PostgreSQL
|
||||||
|
|
||||||
@ -36,7 +48,7 @@ Download `app.properties` configuration file and configure the required sections
|
|||||||
|
|
||||||
Run the application mounting your previously configured `app.properties`
|
Run the application mounting your previously configured `app.properties`
|
||||||
|
|
||||||
> $ docker run --mount type=bind,source=your-file-path/app.properties,target=/usr/local/tomcat/webapps/ROOT/WEB-INF/app.properties -it --rm -p 8080:8080 veigap/wisemapping:latest
|
> $ docker run --mount type=bind,source=your-file-path/app.properties,target=/usr/local/tomcat/webapps/ROOT/WEB-INF/app.properties -it --rm -p 8080:8080 wisemapping/wisemapping:latest
|
||||||
|
|
||||||
# Advanced configuration
|
# Advanced configuration
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user