remove docker hub config in favour of circleci

This commit is contained in:
Oliver Gorwits
2018-01-16 12:44:09 +00:00
parent 4996fe411f
commit c3353593ce
3 changed files with 0 additions and 15 deletions

View File

@@ -1,6 +0,0 @@
# vim: ft=Dockerfile
FROM alpine:3.5
ARG TAG
ENV TAG ${TAG:-master}
LABEL org.netdisco.maintainer="The Netdisco Project"
LABEL org.netdisco.version=${TAG}

View File

@@ -1,2 +0,0 @@
#!/bin/bash
docker build --build-arg TAG=$SOURCE_BRANCH -t $IMAGE_NAME .

View File

@@ -1,7 +0,0 @@
#!/bin/bash
for url in $(echo $BUILD_TRIGGERS | sed "s/,/ /g"); do
curl -sL -X POST -H "Content-Type: application/json" \
-u "$ACCESS_TOKEN" \
--data "{\"tag_name\": \"$SOURCE_BRANCH\", \"target_commitish\": \"master\", \"name\": \"Netdisco $SOURCE_BRANCH\"}" \
$url
done