Merge pull request #79 from yosssi/services

Updated README.md to show all services.
This commit is contained in:
Brad Rydzewski 2014-02-14 10:36:50 -08:00
commit 1593b1ee8d
2 changed files with 14 additions and 1 deletions

View file

@ -152,17 +152,30 @@ Drone can launch database containers for your build:
services: services:
- cassandra - cassandra
- couchdb - couchdb
- couchdb:1.0
- couchdb:1.4
- couchdb:1.5
- elasticsearch - elasticsearch
- elasticsearch:0.20
- elasticsearch:0.90
- neo4j - neo4j
- neo4j:1.9
- mongodb - mongodb
- mongodb:2.2
- mongodb:2.4
- mysql - mysql
- mysql:5.5
- postgres - postgres
- postgres:9.1
- rabbitmq - rabbitmq
- rabbitmq:3.2
- redis - redis
- riak - riak
- zookeeper - zookeeper
``` ```
If you omit the version, Drone will launch the latest version of the database. (For example, if you set `mongodb`, Drone wil launch MongoDB 2.4.)
**NOTE:** database and service containers are exposed over TCP connections and **NOTE:** database and service containers are exposed over TCP connections and
have their own local IP address. If the **socat** utility is installed inside your have their own local IP address. If the **socat** utility is installed inside your
Docker image, Drone will automatically proxy localhost connections to the correct Docker image, Drone will automatically proxy localhost connections to the correct

View file

@ -116,7 +116,7 @@ var services = map[string]*image{
// couchdb // couchdb
"couchdb": { "couchdb": {
Ports: []string{"5984"}, Ports: []string{"5984"},
Tag: "bradrydzewski/couchdb:1.0", Tag: "bradrydzewski/couchdb:1.5",
Name: "couchdb", Name: "couchdb",
}, },
"couchdb:1.0": { "couchdb:1.0": {