Get started with Mauro Data Mapper
Install Docker
Install Docker, or via your distro's package manager if you prefer.
Pull the latest Mauro Data Mapper image
| docker pull maurodatamapper/mauro:0.0.2-beta
|
Create a folder/directory to persistent your data
Download some configuration
| Configuration |
Description |
File |
| Quick start |
Minimal configuration to get started |
quick-start.zip |
Run it!
To run the container in the foreground, you can use:
| docker run --rm -it -p 8080:8080 \
-v /my/docker/files/init:/opt/init:ro \
-v /my/docker/files/data:/var/lib/postgresql/data \
maurodatamapper/mauro:0.0.2-beta
|
Or in the background:
| docker run --rm -d -p 8080:8080 \
-v /my/docker/files/init:/opt/init:ro \
-v /my/docker/files/data:/var/lib/postgresql/data \
maurodatamapper/mauro:0.0.2-beta
|