@@ -108,15 +108,15 @@ runs MongoDB as the service `mage-db`.
108108The Compose file references a custom, local [ Dockerfile] ( server/Dockerfile ) based on the official [ Node.js] ( https://hub.docker.com/_/node/ )
109109image to build the MAGE server image. At build time, the MAGE server Dockerfile downloads an archive of the MAGE server
110110code from [ Github] ( https://github.com/ngageoint/mage-server ) . This defaults to some (hopefully) recent release version of
111- the MAGE server, e.g., 6.1.0 . The Dockerfile accepts an [ argument] ( https://docs.docker.com/engine/reference/builder/#arg ) ,
111+ the MAGE server, e.g., 6.1.1 . The Dockerfile accepts an [ argument] ( https://docs.docker.com/engine/reference/builder/#arg ) ,
112112` MAGE_VERSION ` , which you can specify to ` docker-compose ` like
113113``` bash
114114MAGE_VERSION=develop docker-compose build
115115```
116116to build with whatever version of MAGE server you wish. Github should accept any valid, uniquely identifiable refspec in
117117the download URL the Docker file uses, so you could use a branch name, tag name, or commit hash. By way of the
118118``` yaml
119- image : " mage-server:${MAGE_VERSION:-6.1.0 }"
119+ image : " mage-server:${MAGE_VERSION:-6.1.1 }"
120120` ` `
121121entry the Compose file tells Docker to [tag](https://docs.docker.com/get-started/part2/#tag-the-image) the ` mage-server`
122122image with value of `MAGE_VERSION`.
@@ -125,7 +125,7 @@ Be aware that every different value you specify for `MAGE_VERSION` to `docker-co
125125` mage-server` image because changing that value modifies the [build stage](https://docs.docker.com/develop/develop-images/multistage-build/)
126126that downloads the MAGE server baseline. For example after running
127127` ` ` bash
128- $ MAGE_VERSION=6.1.0 docker-compose build
128+ $ MAGE_VERSION=6.1.1 docker-compose build
129129# ... Docker build output
130130$ MAGE_VERSION=develop docker-compose build
131131# ... Docker build output
@@ -134,7 +134,7 @@ then listing your Docker images ...
134134` ` ` bash
135135$ docker images
136136REPOSITORY TAG IMAGE ID CREATED SIZE
137- mage-server 6.1.0 877f79a739b7 8 minutes ago 949MB
137+ mage-server 6.1.1 877f79a739b7 8 minutes ago 949MB
138138mage-server develop 75a73b7b7c3e 2 days ago 961MB
139139node 8.11.1 4635bc7d130c 3 weeks ago 673MB
140140mongo 3.6-jessie 5b1317f8158f 6 weeks ago 366MB
0 commit comments