From b668a293910ced1ec3d66d67cbf01a152079b9fb Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Sat, 5 Aug 2017 05:15:18 +0000 Subject: [PATCH] Initial Bitbucket Pipelines configuration --- bitbucket-pipelines.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 bitbucket-pipelines.yml diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml new file mode 100644 index 00000000..c5462736 --- /dev/null +++ b/bitbucket-pipelines.yml @@ -0,0 +1,24 @@ +# This is a sample build configuration for Docker. +# Check our guides at https://confluence.atlassian.com/x/O1toN for more examples. +# Only use spaces to indent your .yml configuration. +# ----- +# You can specify a custom docker image from Docker Hub as your build environment. +# image: atlassian/default-image:latest + +# enable Docker for your repository +options: + docker: true + +pipelines: + default: + - step: + script: # Modify the commands below to build your repository. + # Set $DOCKER_HUB_USERNAME and $DOCKER_HUB_PASSWORD as environment variables in repository settings + - export IMAGE_NAME=ldooks/dragon-bot:latest + + # build the Docker image (this will use the Dockerfile in the root of the repo) + - docker build -t $IMAGE_NAME . + # authenticate with the Docker Hub registry + - docker login --username $DOCKER_HUB_USERNAME --password $DOCKER_HUB_PASSWORD + # push the new Docker image to the Docker registry + - docker push $IMAGE_NAME \ No newline at end of file