parse: series 2

This commit is contained in:
Sameer Naik
2017-02-20 16:09:11 +05:30
parent 15185d9a5d
commit 575ca92197
7 changed files with 24 additions and 3 deletions

View File

@@ -1 +1 @@
/local/
local/

View File

View File

@@ -0,0 +1,19 @@
version: '2'
services:
mongodb:
image: 'bitnami/mongodb:latest'
volumes:
- 'mongodb_data:/bitnami/mongodb'
parse:
image: 'bitnami/parse:2'
ports:
- '1337:1337'
volumes:
- 'parse_data:/bitnami/parse'
depends_on:
- mongodb
volumes:
mongodb_data:
driver: local
parse_data:
driver: local

View File

@@ -2,6 +2,8 @@ machine:
services:
- docker
environment:
RELEASE_SERIES_LIST: 2
LATEST_STABLE: 2
IMAGE_NAME: parse
CHART_NAME: parse
CHART_REPO: https://github.com/bitnami/charts
@@ -12,11 +14,11 @@ dependencies:
override:
- docker info
- gcloud version
- docker pull $DOCKER_PROJECT/$IMAGE_NAME:_ || true
- curl -sL https://raw.githubusercontent.com/bitnami/test-infra/master/circle/docker-pull-cache.sh | bash -
test:
override:
- docker build --rm=false -t $DOCKER_PROJECT/$IMAGE_NAME:$CIRCLE_BUILD_NUM .
- curl -sL https://raw.githubusercontent.com/bitnami/test-infra/master/circle/docker-image-test.sh | bash -
deployment:
cache: