-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from musicEnfanthen/fix-readme
Fix readme
- Loading branch information
Showing
1 changed file
with
12 additions
and
5 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 |
---|---|---|
@@ -1,17 +1,24 @@ | ||
# docker-mei | ||
|
||
A docker image for anything concerning MEI. | ||
Docker images for anything concerning the MEI build process. | ||
|
||
The repository contains two Dockerfiles: | ||
|
||
- `Dockerfile.base`: creates a basic image with all necessary dependencies (Saxon, Ant, Verovio, Prince) | ||
- `Dockerfile`: creates an executing image that allows running different MEI build steps (incl. building schema, customizations, or guidelines) | ||
|
||
## Local build of basic image | ||
|
||
## Local build basic image | ||
```docker build -f Dockerfile.base -t docker-mei-base . ``` | ||
|
||
## Local build executive image | ||
## Local build of executing image | ||
|
||
```docker build -t docker-mei .``` | ||
|
||
## Exampl usage (without local build) | ||
## Example usage (without local build) | ||
|
||
tbc. | ||
|
||
## Exampl usage (local build) | ||
## Example usage (local build) | ||
|
||
```docker run --rm -v /ABSOLUTE/PATH/TO/YOUR/MUSIC_ENCODING/CLONE:/opt/music-encoding --name docker-mei docker-mei``` |