Removes build arg
This commit is contained in:
parent
ea54fff7e2
commit
976b0999e0
|
@ -1,6 +1,3 @@
|
||||||
FROM postgres
|
FROM postgres
|
||||||
ARG GIT_COMMIT=unspecified
|
|
||||||
LABEL git_commit=$GIT_COMMIT
|
|
||||||
COPY ./initdb.sh /docker-entrypoint-initdb.d/initdb.sh
|
COPY ./initdb.sh /docker-entrypoint-initdb.d/initdb.sh
|
||||||
CMD echo 'echo "git commit = $GIT_COMMIT"' >> /docker-entrypoint-initdb.d/initdb.sh
|
|
||||||
EXPOSE 5432
|
EXPOSE 5432
|
||||||
|
|
14
deploy.sh
14
deploy.sh
|
@ -3,12 +3,12 @@
|
||||||
# Build and push Docker image to Docker Hub
|
# Build and push Docker image to Docker Hub
|
||||||
echo "$DOCKER_TOKEN" | docker login -u "$DOCKER_USERNAME" --password-stdin
|
echo "$DOCKER_TOKEN" | docker login -u "$DOCKER_USERNAME" --password-stdin
|
||||||
APP="db"
|
APP="db"
|
||||||
REPO="sartography/cr-connect-$APP";
|
REPO="sartography/cr-connect-$APP"
|
||||||
TAG=$(if [ "$TRAVIS_BRANCH" == "master" ]; then echo "latest"; else echo "$TRAVIS_BRANCH" ; fi;)
|
TAG=$(if [ "$TRAVIS_BRANCH" == "master" ]; then echo "latest"; else echo "$TRAVIS_BRANCH" ; fi)
|
||||||
docker build --build-arg GIT_COMMIT="$REPO:$COMMIT" -f Dockerfile -t "$REPO:$COMMIT" .;
|
docker build -f Dockerfile -t "$REPO:$COMMIT" .
|
||||||
docker tag "$REPO:$COMMIT" "$REPO:$TAG";
|
docker tag "$REPO:$COMMIT" "$REPO:$TAG"
|
||||||
docker tag "$REPO:$COMMIT" "$REPO:travis-$TRAVIS_BUILD_NUMBER";
|
docker tag "$REPO:$COMMIT" "$REPO:travis-$TRAVIS_BUILD_NUMBER"
|
||||||
docker push "$REPO";
|
docker push "$REPO"
|
||||||
|
|
||||||
# Wait for Docker Hub
|
# Wait for Docker Hub
|
||||||
echo "Publishing to Docker Hub..."
|
echo "Publishing to Docker Hub..."
|
||||||
|
@ -16,4 +16,4 @@ sleep 30
|
||||||
|
|
||||||
# Notify UVA DCOS that Docker image has been updated
|
# Notify UVA DCOS that Docker image has been updated
|
||||||
echo "Refreshing DC/OS..."
|
echo "Refreshing DC/OS..."
|
||||||
aws sqs send-message --region "$AWS_DEFAULT_REGION" --queue-url "$AWS_SQS_URL" --message-body "crconnect/$TRAVIS_BRANCH/$APP";
|
aws sqs send-message --region "$AWS_DEFAULT_REGION" --queue-url "$AWS_SQS_URL" --message-body "crconnect/$TRAVIS_BRANCH/$APP"
|
||||||
|
|
Loading…
Reference in New Issue