diff options
author | chris <cl@startx.fr> | 2014-06-20 19:26:53 +0200 |
---|---|---|
committer | chris <cl@startx.fr> | 2014-06-20 19:26:53 +0200 |
commit | 8b6370786114c8491e5ce7150a9ee10d4f5fbf76 (patch) | |
tree | c1bbdc577d5e3f29bb19859198ed84a12669d239 | |
parent | 5973bf226ae3ab4ceca6fec1e1bdac8bf38c7db8 (diff) | |
download | phpmyadmin-8b6370786114c8491e5ce7150a9ee10d4f5fbf76.tar.gz phpmyadmin-8b6370786114c8491e5ce7150a9ee10d4f5fbf76.tar.bz2 phpmyadmin-8b6370786114c8491e5ce7150a9ee10d4f5fbf76.tar.xz phpmyadmin-8b6370786114c8491e5ce7150a9ee10d4f5fbf76.zip |
Added sample to the readme and change directory structure
-rw-r--r-- | README.md | 35 | ||||
-rw-r--r-- | mariadb/Dockerfile | 8 | ||||
-rw-r--r-- | mysql/Dockerfile | 5 | ||||
-rw-r--r-- | ooconv/Dockerfile | 5 | ||||
-rw-r--r-- | php/Dockerfile | 5 | ||||
-rw-r--r-- | phpmyadmin/Dockerfile | 8 | ||||
-rw-r--r-- | phpmyadmin/config.inc.php | 13 | ||||
-rw-r--r-- | phpmyadmin/test.php | 4 |
8 files changed, 34 insertions, 49 deletions
@@ -1,4 +1,37 @@ docker-images ============= -repository with all docker images used in our IS +**Description** +This repository contains a collection of Docker configurations used in STARTX IS. + +**Usage** +The following commands can be used to deploy some of the services offered by the Docker containers in this repository. + +- **Applications (app)** + + - **phpmyadmin** + + docker run --name="app-pma" -d --link mariadb:mariadb -e VIRTUAL_HOST=pma.project.dev.startx.fr startxfr/app-phpmyadmin + + - **rockmongo** + + docker run --name="app-rm" -d --link mongodb:mongodb -e VIRTUAL_HOST=mongo.project.dev.startx.fr startxfr/app-rockmongo + +- **Services (sv)** + + - **php** + + docker run --name="sv-php" -d -e VIRTUAL_HOST=php.project.dev.startx.fr startxfr/sv-php + + - **mariadb** + + docker run --name="sv-mariadb" -d startxfr/sv-mariadb + + - **mongodb** + + docker run --name="sv-mongodb" -d startxfr/sv-mongodb + + - **mysqldb** + + docker run --name="sv-mysqldb" -d startxfr/sv-mysqldb + diff --git a/mariadb/Dockerfile b/mariadb/Dockerfile deleted file mode 100644 index 3803812..0000000 --- a/mariadb/Dockerfile +++ /dev/null @@ -1,8 +0,0 @@ - - -FROM openshift/fedora-mariadb:latest -MAINTAINER startx dev@startx.fr - -# test creation a partir d'une autre image -RUN echo 'post install de mariadb' > /tmp/post - diff --git a/mysql/Dockerfile b/mysql/Dockerfile deleted file mode 100644 index 0ab5bd6..0000000 --- a/mysql/Dockerfile +++ /dev/null @@ -1,5 +0,0 @@ - - -FROM softinnov/mysql:latest -MAINTAINER startx dev@startx.fr - diff --git a/ooconv/Dockerfile b/ooconv/Dockerfile deleted file mode 100644 index 9bde713..0000000 --- a/ooconv/Dockerfile +++ /dev/null @@ -1,5 +0,0 @@ - - -FROM maxexcloo/phpmyadmin:latest -MAINTAINER startx dev@startx.fr - diff --git a/php/Dockerfile b/php/Dockerfile deleted file mode 100644 index 6a87d06..0000000 --- a/php/Dockerfile +++ /dev/null @@ -1,5 +0,0 @@ - - -FROM maxexcloo/nginx-php:latest -MAINTAINER startx dev@startx.fr - diff --git a/phpmyadmin/Dockerfile b/phpmyadmin/Dockerfile deleted file mode 100644 index 50496f4..0000000 --- a/phpmyadmin/Dockerfile +++ /dev/null @@ -1,8 +0,0 @@ - - -FROM maxexcloo/phpmyadmin:latest -MAINTAINER startx dev@startx.fr - -# ajout de la conf personnalisée pour les app startx -ADD config.inc.php /data/http/config.inc.php -ADD test.php /data/http/test.php diff --git a/phpmyadmin/config.inc.php b/phpmyadmin/config.inc.php deleted file mode 100644 index 7458071..0000000 --- a/phpmyadmin/config.inc.php +++ /dev/null @@ -1,13 +0,0 @@ -<?php -// fichier qui provient de l'image startx/pma -$cfg['blowfish_secret'] = 'SECRET'; -$cfg['PmaNoRelation_DisableWarning'] = true; -$i = 0; -$i++; -$cfg['Servers'][$i]['extension'] = 'mysqli'; -$cfg['Servers'][$i]['host'] = 'mariadb'; -$cfg['Servers'][$i]['controlhost'] = ''; -$cfg['Servers'][$i]['controluser'] = 'root'; -$cfg['Servers'][$i]['controlpass'] = 'secretdemerde'; - -?> diff --git a/phpmyadmin/test.php b/phpmyadmin/test.php deleted file mode 100644 index a7796a0..0000000 --- a/phpmyadmin/test.php +++ /dev/null @@ -1,4 +0,0 @@ -<?php -print_r($_SERVER); -print_r($_ENV); -?> |