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 /README.md | |
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
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 35 |
1 files changed, 34 insertions, 1 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 + |