From a699d0d06feeb1859efea16dd6b3df17901a1bc5 Mon Sep 17 00:00:00 2001 From: startxfr Date: Thu, 20 Nov 2014 03:17:46 +0100 Subject: modif des services et ajout de memcache, apache et nodejs --- Services/mariadb/Dockerfile | 22 ++++++++++++++++ Services/mariadb/README.md | 16 ++++++++++++ Services/mariadb/mariadb_run.sh | 56 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 94 insertions(+) create mode 100644 Services/mariadb/Dockerfile create mode 100644 Services/mariadb/README.md create mode 100644 Services/mariadb/mariadb_run.sh (limited to 'Services/mariadb') diff --git a/Services/mariadb/Dockerfile b/Services/mariadb/Dockerfile new file mode 100644 index 0000000..b354a0e --- /dev/null +++ b/Services/mariadb/Dockerfile @@ -0,0 +1,22 @@ +FROM startx/fedora +MAINTAINER Chistophe LARUE + +COPY mariadb_run.sh /bin/ +RUN yum -y install \ + mariadb-libs \ + mariadb-server \ + mariadb \ + && yum clean all \ + && mkdir -p /var/log/mysql \ + && touch /var/log/mysql/.keep /var/lib/mysql/.keep \ + && chown -R mysql:mysql /var/log/mysql /var/lib/mysql \ + && chmod ug+rx /bin/mariadb_* + +VOLUME ["/var/lib/mysql", "/var/log/mysql"] +USER mysql + +EXPOSE 3306 + +#CMD ["/usr/libexec/mysqld"] +CMD ["/bin/mariadb_run.sh"] +ONBUILD CMD ["/bin/mariadb_run.sh"] \ No newline at end of file diff --git a/Services/mariadb/README.md b/Services/mariadb/README.md new file mode 100644 index 0000000..f81f3de --- /dev/null +++ b/Services/mariadb/README.md @@ -0,0 +1,16 @@ +docker-images MariaDB +===================== + +**Description** +Based on the [tutum php](https://registry.hub.docker.com/u/tutum/mariadb) Dockerfile + +**Usage** + + docker run --name="test-maria" -d startx/sv-maria + + docker run --name="test-maria" -d startx/sv-maria + docker run -d -p 3306:3306 startx/sv-maria + docker run -d -p 3306:3306 --name="test-maria" startx/sv-maria + + docker run -d --name="test-maria" startx/sv-maria // linked to another container + docker run -d --name="test-www" --link test-maria:maria startx/sv-php diff --git a/Services/mariadb/mariadb_run.sh b/Services/mariadb/mariadb_run.sh new file mode 100644 index 0000000..b5b1421 --- /dev/null +++ b/Services/mariadb/mariadb_run.sh @@ -0,0 +1,56 @@ +#!/bin/bash +ln -s /dev/stderr /var/log/mysql/mysqld.log +if [ ! -f /var/lib/mysql/.created ]; then + function wait_for_mysqld_start { + for i in {1..30}; do + if echo 'select 1' | mysql -u root > /dev/null 2>&1; then + return 0 + fi + sleep 1 + done + + echo "MariaDB did not start in time" + exit 1 + } + + + + password=${DB_PASSWORD:-password} + dbname=${DB_NAME:-master} + + /usr/bin/mysql_install_db -u mysql + + /usr/libexec/mysqld & + pid=$! + + wait_for_mysqld_start + + echo "Creating database $dbname ..." + + sql=$(cat <