This repository has been archived on 2023-03-15. You can view files and clone it, but cannot push or open issues or pull requests.
infrastructure/docker/mariadb
2019-10-10 17:51:35 +02:00
..
60-disable-dialog.cnf Initial commit 2019-07-11 09:33:07 +02:00
60-ldap.cnf Initial commit 2019-07-11 09:33:07 +02:00
60-remote.cnf Initial commit 2019-07-11 09:33:07 +02:00
Dockerfile Initial commit 2019-07-11 09:33:07 +02:00
entrypoint.sh Initial commit 2019-07-11 09:33:07 +02:00
nsswitch.conf Initial commit 2019-07-11 09:33:07 +02:00
pam-mariadb Initial commit 2019-07-11 09:33:07 +02:00
README.md Rebuilding mariadb image was needed... 2019-10-10 17:51:35 +02:00

sudo docker build -t superboum/amd64_mariadb:v3 .

sudo docker run \
  -t -i \
  -p 3306:3306 \
  -v /tmp/mysql:/var/lib/mysql \
  -e LDAP_URI='ldap://bottin.service.2.cluster.deuxfleurs.fr' \
  -e LDAP_BASE='ou=users,dc=deuxfleurs,dc=fr' \
  -e LDAP_VERSION=3 \
  -e LDAP_BIND_DN='cn=admin,dc=deuxfleurs,dc=fr' \
  -e LDAP_BIND_PW='xxxx' \
  -e MYSQL_PASSWORD='xxxx' \
  superboum/amd64_mariadb:v1 \
  tail -f /var/log/mysql/error.log

CREATE USER quentin@localhost IDENTIFIED VIA pam USING 'mariadb';