summaryrefslogtreecommitdiffstats
path: root/README.md
blob: 34bcee4baf2964b57f36abe53d1d057e9dd24f75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
docker-images
=============

**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**
Based on the [maxexcloo phpmyadmin](https://github.com/maxexcloo/Docker) Dockerfile

          docker run --name="test-phpmyadmin" -p 81:80 -d -e VIRTUAL_HOST=pma.project.dev.startx.fr startx/pma
          docker run --name="test-phpmyadmin" -d --link maria:maria -e VIRTUAL_HOST=pma.project.dev.startx.fr startx/app-phpmyadmin

  - **rockmongo**
Based on the [maxexcloo phpmyadmin](https://github.com/maxexcloo/Docker) Dockerfile

          docker run --name="test-rockmongo" -p 82:80 -d -e VIRTUAL_HOST=rm.project.dev.startx.fr startx/rockmongo
          docker run --name="test-rockmongo" -d --link mongo:mongo -e VIRTUAL_HOST=mongo.project.dev.startx.fr startx/app-rockmongo

- **Services (sv)**

  - **php**
Based on the [tutum php](https://github.com/tutum/apache-php) Dockerfile
	
          docker run --name="test-web" -d -e VIRTUAL_HOST=web.project.dev.startx.fr startx/sv-php

  - **mariadb**
	
          docker run --name="test-maria" -d startx/sv-maria
	
  - **mongodb** 
	
          docker run --name="test-mongo" -d startx/sv-mongo
	
  - **mysqldb**
	
          docker run --name="test-mysql" -d startx/sv-mysql

  - **postgres**
	
          docker run --name="test-postgres" -d startx/sv-postgres

  - **ooconv**
	
          docker run --name="test-ooconv" -d startx/sv-ooconv