diff options
Diffstat (limited to 'app/build')
-rw-r--r-- | app/build/docker-compose.yml | 7 | ||||
-rw-r--r-- | app/build/mariadb/60-remote.cnf | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/app/build/docker-compose.yml b/app/build/docker-compose.yml index ee76372..2a67453 100644 --- a/app/build/docker-compose.yml +++ b/app/build/docker-compose.yml @@ -1,6 +1,13 @@ version: '3.4' services: + mariadb: + build: + context: ./mariadb + args: + VERSION: 4 # fake for now + image: superboum/amd64_mariadb:v4 + # Instant Messaging riot: build: diff --git a/app/build/mariadb/60-remote.cnf b/app/build/mariadb/60-remote.cnf index f759a49..acf8f9b 100644 --- a/app/build/mariadb/60-remote.cnf +++ b/app/build/mariadb/60-remote.cnf @@ -1,2 +1,2 @@ [mysqld] -bind-address = 0.0.0.0 +bind-address = * |