diff options
Diffstat (limited to 'Services/maria/README.md')
-rw-r--r-- | Services/maria/README.md | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/Services/maria/README.md b/Services/maria/README.md index dca570c..f81f3de 100644 --- a/Services/maria/README.md +++ b/Services/maria/README.md @@ -1,9 +1,16 @@ docker-images MariaDB ===================== -**Description** -Based on the docker default ma Dockerfile +**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 |