diff options
author | startxfr <clarue@startx.fr> | 2014-11-21 13:29:03 +0100 |
---|---|---|
committer | startxfr <clarue@startx.fr> | 2014-11-21 13:29:03 +0100 |
commit | b388dc33a5f70864ef9f62e6a6ed9951c122dfd7 (patch) | |
tree | 5991077e673e111a98b0410ea4b1f6d1df4f30e5 | |
parent | da24c283afeeb8087b92c2f463ffe5cc73df0c29 (diff) | |
download | phpmyadmin-b388dc33a5f70864ef9f62e6a6ed9951c122dfd7.tar.gz phpmyadmin-b388dc33a5f70864ef9f62e6a6ed9951c122dfd7.tar.bz2 phpmyadmin-b388dc33a5f70864ef9f62e6a6ed9951c122dfd7.tar.xz phpmyadmin-b388dc33a5f70864ef9f62e6a6ed9951c122dfd7.zip |
modif des readme, correction du bug d'exemple d'accès aux container.
-rw-r--r-- | Applications/phpmyadmin/README.md | 2 | ||||
-rw-r--r-- | Applications/rockmongo/README.md | 2 | ||||
-rw-r--r-- | Services/apache/README.md | 2 | ||||
-rw-r--r-- | Services/mariadb/README.md | 2 | ||||
-rw-r--r-- | Services/memcache/README.md | 2 | ||||
-rw-r--r-- | Services/mongo/README.md | 2 | ||||
-rw-r--r-- | Services/nodejs/README.md | 2 | ||||
-rw-r--r-- | Services/php/README.md | 2 | ||||
-rw-r--r-- | Services/postgres/README.md | 2 | ||||
-rw-r--r-- | Services/ssh/README.md | 2 |
10 files changed, 19 insertions, 1 deletions
diff --git a/Applications/phpmyadmin/README.md b/Applications/phpmyadmin/README.md index 32d2071..e91d399 100644 --- a/Applications/phpmyadmin/README.md +++ b/Applications/phpmyadmin/README.md @@ -22,9 +22,11 @@ Build the container ## Accessing server access to the running webserver + firefox http://localhost:80/pma access to the container itself + docker exec -it pma bash ## Related Resources diff --git a/Applications/rockmongo/README.md b/Applications/rockmongo/README.md index 18f0618..1a4a26d 100644 --- a/Applications/rockmongo/README.md +++ b/Applications/rockmongo/README.md @@ -22,9 +22,11 @@ Build the container ## Accessing server access to the running webserver + firefox http://localhost:80/rockmongo access to the container itself + docker exec -it rockmongo bash ## Related Resources diff --git a/Services/apache/README.md b/Services/apache/README.md index 897a1bf..e15f71e 100644 --- a/Services/apache/README.md +++ b/Services/apache/README.md @@ -24,9 +24,11 @@ Build the container ## Accessing server access to the running webserver + firefox http://localhost:80 access to the container itself + docker exec -it apache bash ## Related Resources diff --git a/Services/mariadb/README.md b/Services/mariadb/README.md index 447fcff..d9436cd 100644 --- a/Services/mariadb/README.md +++ b/Services/mariadb/README.md @@ -26,9 +26,11 @@ Build the container ## Accessing server access to the running database + mysql -h localhost -p 3306 access to the container itself + docker exec -it mariadb bash ## Related Resources diff --git a/Services/memcache/README.md b/Services/memcache/README.md index 16124e9..b463346 100644 --- a/Services/memcache/README.md +++ b/Services/memcache/README.md @@ -25,8 +25,8 @@ Build the container docker run -d -p 11211:11211 --name="memcache" sv-memcache ## Accessing server - access to the container itself + docker exec -it memcache bash ## Related Resources diff --git a/Services/mongo/README.md b/Services/mongo/README.md index 41d4670..5c423e3 100644 --- a/Services/mongo/README.md +++ b/Services/mongo/README.md @@ -26,9 +26,11 @@ Build the container ## Accessing server access to the running database + mongo -h localhost -p 27017 access to the container itself + docker exec -it mongo bash ## Related Resources diff --git a/Services/nodejs/README.md b/Services/nodejs/README.md index f903a64..e3961df 100644 --- a/Services/nodejs/README.md +++ b/Services/nodejs/README.md @@ -23,9 +23,11 @@ Build the container ## Accessing server access to the running webserver + firefox http://localhost:8000 access to the container itself + docker exec -it nodejs bash ## Related Resources diff --git a/Services/php/README.md b/Services/php/README.md index e4ed6f6..802f4d2 100644 --- a/Services/php/README.md +++ b/Services/php/README.md @@ -23,9 +23,11 @@ Build the container ## Accessing server access to the running webserver + firefox http://localhost:80 access to the container itself + docker exec -it php bash ## Related Resources diff --git a/Services/postgres/README.md b/Services/postgres/README.md index 44a9a65..313d67a 100644 --- a/Services/postgres/README.md +++ b/Services/postgres/README.md @@ -26,9 +26,11 @@ Build the container ## Accessing server access to the running database + psql -U postgres -h localhost -p 5432 access to the container itself + docker exec -it mongo bash ## Related Resources diff --git a/Services/ssh/README.md b/Services/ssh/README.md index 7f68c79..4735bec 100644 --- a/Services/ssh/README.md +++ b/Services/ssh/README.md @@ -23,9 +23,11 @@ Build the container ## Accessing server access to the running server + ssh -p 22022 root@localhost access to the container itself + docker exec -it ssh bash ## Related Resources |