adds circleci build
This commit is contained in:
		
							
								
								
									
										23
									
								
								.circleci/config.yml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										23
									
								
								.circleci/config.yml
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,23 @@
 | 
			
		||||
version: 2
 | 
			
		||||
jobs:
 | 
			
		||||
 build:
 | 
			
		||||
   docker:
 | 
			
		||||
    - image: golang:1.6.4
 | 
			
		||||
   steps:
 | 
			
		||||
    - setup_remote_docker
 | 
			
		||||
    - checkout
 | 
			
		||||
    - run:
 | 
			
		||||
        name: Install Docker client
 | 
			
		||||
        command: |
 | 
			
		||||
          set -x
 | 
			
		||||
          VER="17.03.0-ce"
 | 
			
		||||
          curl -L -o /tmp/docker-$VER.tgz https://download.docker.com/linux/static/stable/x86_64/docker-$VER.tgz
 | 
			
		||||
          tar -xz -C /tmp -f /tmp/docker-$VER.tgz
 | 
			
		||||
          mv /tmp/docker/* /usr/bin
 | 
			
		||||
 | 
			
		||||
    - run: docker login -u $DOCKER_USER -p $DOCKER_PASS
 | 
			
		||||
    - run: docker build -t chaospott/site .
 | 
			
		||||
    - run: |
 | 
			
		||||
        docker tag chaospott/site chaospott/site:$CIRCLE_SHA1
 | 
			
		||||
        docker push chaospott/site:$CIRCLE_SHA1
 | 
			
		||||
        docker push chaospott/site:latest
 | 
			
		||||
		Reference in New Issue
	
	Block a user