mirror of
https://github.com/bitnami/containers.git
synced 2026-02-19 14:08:07 +08:00
phpbb: series 3
This commit is contained in:
2
bitnami/phpbb/.gitignore
vendored
2
bitnami/phpbb/.gitignore
vendored
@@ -1 +1 @@
|
||||
/local/
|
||||
local/
|
||||
|
||||
0
bitnami/phpbb/3/.dockerignore
Normal file
0
bitnami/phpbb/3/.dockerignore
Normal file
26
bitnami/phpbb/3/docker-compose.yml
Normal file
26
bitnami/phpbb/3/docker-compose.yml
Normal 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
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user