diff options
author | Jorge Hernandez <jh1730@att.com> | 2018-02-27 11:41:54 -0600 |
---|---|---|
committer | Jorge Hernandez <jh1730@att.com> | 2018-02-27 20:34:47 +0000 |
commit | bd14de825f1ad7ce911162c659bd81725226232d (patch) | |
tree | c6ee8fa12a6675604adc0b15280c0bc16212208b /docker-compose-integration.yml | |
parent | 7228882abaed47068a8efd400ca7d2a13bfa1c6b (diff) |
docker db image simplification
1. use mariadb image from docker registry to simplify set up.
2. remove harcoded root and user mariadb accounts
3. restrict access to user account to just specific databases.
Change-Id: Iaa916dbf2de2474fcc483a4be6167b4b92a2de61
Issue-ID: POLICY-650
Signed-off-by: Jorge Hernandez <jh1730@att.com>
Diffstat (limited to 'docker-compose-integration.yml')
-rw-r--r-- | docker-compose-integration.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docker-compose-integration.yml b/docker-compose-integration.yml index 5cbd401b..dbd708b9 100644 --- a/docker-compose-integration.yml +++ b/docker-compose-integration.yml @@ -1,9 +1,12 @@ version: '2' services: mariadb: - image: onap/policy/policy-db + image: mariadb:10.0.34 container_name: mariadb hostname: mariadb + command: ['--lower-case-table-names=1'] + volumes: + - ./config/db:/docker-entrypoint-initdb.d expose: - 3306 nexus: |