phpbb: series 3

This commit is contained in:
Sameer Naik
2017-02-20 16:09:46 +05:30
parent 59300e34c2
commit 61c1d3653c
8 changed files with 31 additions and 3 deletions

View File

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

View File

View File

@@ -0,0 +1,26 @@
version: '2'
services:
mariadb:
image: 'bitnami/mariadb:latest'
volumes:
- 'mariadb_data:/bitnami/mariadb'
phpbb:
image: 'bitnami/phpbb:3'
ports:
- '80:80'
- '443:443'
volumes:
- 'phpbb_data:/bitnami/phpbb'
- 'apache_data:/bitnami/apache'
- 'php_data:/bitnami/php'
depends_on:
- mariadb
volumes:
mariadb_data:
driver: local
phpbb_data:
driver: local
apache_data:
driver: local
php_data:
driver: local

View File

@@ -2,6 +2,8 @@ machine:
services:
- docker
environment:
RELEASE_SERIES_LIST: 3
LATEST_STABLE: 3
IMAGE_NAME: phpbb
CHART_NAME: phpbb
CHART_REPO: https://github.com/kubernetes/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: