Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Modify image references to midpoint:3.9-SNAPSHOT-stable
(instead of midpoint:latest)
mederly committed Oct 5, 2018
1 parent 0d77461 commit e2d9df1
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.sh
@@ -10,7 +10,7 @@ while getopts "nh?" opt; do
esac
done
if [ "$SKIP_DOWNLOAD" = "0" ]; then ./download-midpoint; fi
docker build --tag tier/midpoint:latest .
docker build --tag tier/midpoint:3.9-SNAPSHOT-stable .
echo "---------------------------------------------------------------------------------------"
echo "The midPoint containers were successfully built. To start them, execute the following:"
echo ""
2 changes: 1 addition & 1 deletion demo/complex/midpoint_server/Dockerfile
@@ -1,4 +1,4 @@
FROM tier/midpoint
FROM tier/midpoint:3.9-SNAPSHOT-stable

MAINTAINER info@evolveum.com

2 changes: 1 addition & 1 deletion demo/extrepo/docker-compose.yml
@@ -2,7 +2,7 @@ version: "3.3"

services:
midpoint_server:
image: tier/midpoint:latest
image: tier/midpoint:3.9-SNAPSHOT-stable
ports:
- 8443:443
environment:
2 changes: 1 addition & 1 deletion demo/postgresql/docker-compose.yml
@@ -17,7 +17,7 @@ services:
- midpoint_data:/var/lib/postgresql/data

midpoint_server:
image: tier/midpoint:latest
image: tier/midpoint:3.9-SNAPSHOT-stable
ports:
- 8443:443
environment:
2 changes: 1 addition & 1 deletion demo/shibboleth/docker-compose.yml
@@ -15,7 +15,7 @@ services:
- CREATE_NEW_DATABASE=if_needed

midpoint_server:
image: tier/midpoint:latest
image: tier/midpoint:3.9-SNAPSHOT-stable
ports:
- 8443:443
environment:
2 changes: 1 addition & 1 deletion demo/simple/docker-compose.yml
@@ -14,7 +14,7 @@ services:
- CREATE_NEW_DATABASE=if_needed

midpoint_server:
image: tier/midpoint:latest
image: tier/midpoint:3.9-SNAPSHOT-stable
ports:
- 8443:443
environment:
2 changes: 1 addition & 1 deletion tests/main.bats
@@ -3,7 +3,7 @@
load ../common

@test "010 Image is present" {
docker image inspect tier/midpoint:latest
docker image inspect tier/midpoint:3.9-SNAPSHOT-stable
}

@test "020 Check basic components" {

0 comments on commit e2d9df1

Please sign in to comment.