-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
75d0f04
commit d03f990
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# MapReader Examples | ||
|
||
A containerised application for testing out the MapReader library. | ||
|
||
## Creating the Docker image | ||
|
||
To create the Docker image, run the following command: | ||
|
||
```bash | ||
docker build -t mapreader-examples . | ||
``` | ||
|
||
Note: This will take a while to complete as maps will be downloaded from the | ||
NLS. In our current tests, it takes ~30-35 minutes to complete. | ||
|
||
## Running the Docker container | ||
|
||
To run the Docker container, run the following command: | ||
|
||
```bash | ||
docker run -p 8888:8888 mapreader-examples | ||
``` | ||
|
||
## Running the Docker container from Docker Hub | ||
|
||
To run the Docker container from Docker Hub, run the following command: | ||
|
||
```bash | ||
docker run -p 8888:8888 kallewesterling/mapreader-examples | ||
``` |