mirror of
https://github.com/bitnami/containers.git
synced 2026-03-15 14:58:17 +08:00
9.3.15-debian-11-r0 release
This commit is contained in:
committed by
Bitnami Containers
parent
32c7b39cda
commit
c8053da152
32
bitnami/drupal/9/debian-11/docker-compose.yml
Normal file
32
bitnami/drupal/9/debian-11/docker-compose.yml
Normal file
@@ -0,0 +1,32 @@
|
||||
version: '2'
|
||||
services:
|
||||
mariadb:
|
||||
image: docker.io/bitnami/mariadb:10.6
|
||||
environment:
|
||||
# ALLOW_EMPTY_PASSWORD is recommended only for development.
|
||||
- ALLOW_EMPTY_PASSWORD=yes
|
||||
- MARIADB_USER=bn_drupal
|
||||
- MARIADB_DATABASE=bitnami_drupal
|
||||
volumes:
|
||||
- 'mariadb_data:/bitnami/mariadb'
|
||||
drupal:
|
||||
image: docker.io/bitnami/drupal:9
|
||||
ports:
|
||||
- '80:8080'
|
||||
- '443:8443'
|
||||
environment:
|
||||
- DRUPAL_DATABASE_HOST=mariadb
|
||||
- DRUPAL_DATABASE_PORT_NUMBER=3306
|
||||
- DRUPAL_DATABASE_USER=bn_drupal
|
||||
- DRUPAL_DATABASE_NAME=bitnami_drupal
|
||||
# ALLOW_EMPTY_PASSWORD is recommended only for development.
|
||||
- ALLOW_EMPTY_PASSWORD=yes
|
||||
volumes:
|
||||
- 'drupal_data:/bitnami/drupal'
|
||||
depends_on:
|
||||
- mariadb
|
||||
volumes:
|
||||
mariadb_data:
|
||||
driver: local
|
||||
drupal_data:
|
||||
driver: local
|
||||
Reference in New Issue
Block a user