summaryrefslogtreecommitdiffstats
path: root/Services/maria/README.md
blob: f81f3de71f87a5fb1033e2e134f74ddd639bbee4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
docker-images MariaDB
=====================

**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