diff options
Diffstat (limited to 'Services')
-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 |
8 files changed, 15 insertions, 1 deletions
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 |