Skip to content

Commit

Permalink
Added travis config for pushing rabbitmq docker image #20
Browse files Browse the repository at this point in the history
  • Loading branch information
Anshul Vohra committed Mar 16, 2020
1 parent 793ef5a commit 4a41534
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
language: bash
sudo: false

services:
- docker

script:
- cd rabbit-server

after_success:
- docker login -u $DOCKER_USER -p $DOCKER_PASS
- export REPO=ansvohra/rabbitmq
- docker build -t ansvohra/rabbitmq:latest .
- docker push ansvohra/rabbitmq:latest

0 comments on commit 4a41534

Please sign in to comment.