Set ALLOW_EMPTY_PASSWORD env var for mariadb image

This commit is contained in:
Tomas Pizarro 2017-03-02 12:34:46 +00:00
parent 9c4bd64023
commit 4a777eb57d
2 changed files with 6 additions and 2 deletions

View File

@ -2,7 +2,9 @@ version: '2'
services:
mariadb:
image: bitnami/mariadb:latest
image: 'bitnami/mariadb:latest'
environment:
- ALLOW_EMPTY_PASSWORD=yes
myapp:
tty: true # Enables debugging capabilities when attached to this container.

View File

@ -2,7 +2,9 @@ version: '2'
services:
mariadb:
image: bitnami/mariadb:latest
image: 'bitnami/mariadb:latest'
environment:
- ALLOW_EMPTY_PASSWORD=yes
myapp:
tty: true # Enables debugging capabilities when attached to this container.