Files
containers/bitnami/phpbb/3/docker-compose.yml
Bitnami Bot e685e19a64 3.2.0-r6 release
Removes VOLUME instruction from the Dockerfile
2017-07-04 16:51:54 +00:00

25 lines
447 B
YAML

version: '2'
services:
mariadb:
image: 'bitnami/mariadb:latest'
environment:
- ALLOW_EMPTY_PASSWORD=yes
volumes:
- 'mariadb_data:/bitnami'
phpbb:
image: 'bitnami/phpbb:3'
labels:
kompose.service.type: nodeport
ports:
- '80:80'
- '443:443'
volumes:
- 'phpbb_data:/bitnami'
depends_on:
- mariadb
volumes:
mariadb_data:
driver: local
phpbb_data:
driver: local