[bitnami/symfony] Release 6.2.0-debian-11-r0 (#15680)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot
2022-12-02 19:23:36 +01:00
committed by GitHub
parent 12c64c7320
commit 256cbe4b5b
44 changed files with 4960 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
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_myapp
- MARIADB_DATABASE=bitnami_myapp
myapp:
image: docker.io/bitnami/symfony:6.2
ports:
- '8000:8000'
environment:
# ALLOW_EMPTY_PASSWORD is recommended only for development.
- ALLOW_EMPTY_PASSWORD=yes
- SYMFONY_DATABASE_HOST=mariadb
- SYMFONY_DATABASE_PORT_NUMBER=3306
- SYMFONY_DATABASE_USER=bn_myapp
- SYMFONY_DATABASE_NAME=bitnami_myapp
volumes:
- './my-project:/app'
depends_on:
- mariadb