phpmyadmin: series 4

This commit is contained in:
Sameer Naik
2017-02-20 16:10:28 +05:30
parent bcb3e208bc
commit a73701a809
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'
phpmyadmin:
image: 'bitnami/phpmyadmin:4'
ports:
- '80:80'
- '443:443'
depends_on:
- mariadb
volumes:
- 'apache_data:/bitnami/apache'
- 'php_data:/bitnami/php'
- 'phpmyadmin_data:/bitnami/phpmyadmin'
volumes:
mariadb_data:
driver: local
apache_data:
driver: local
php_data:
driver: local
phpmyadmin_data:
driver: local

View File

@@ -2,6 +2,8 @@ machine:
services:
- docker
environment:
RELEASE_SERIES_LIST: 4
LATEST_STABLE: 4
IMAGE_NAME: phpmyadmin
CHART_NAME: phpmyadmin
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: