updated README

This commit is contained in:
Brad Rydzewski 2014-10-22 23:23:05 -07:00
parent 2c4e992f1f
commit 3cd1631c05
3 changed files with 6 additions and 3 deletions

View file

@ -117,6 +117,8 @@ user=""
pass="" pass=""
[worker] [worker]
cert=""
key=""
nodes=[ nodes=[
"unix:///var/run/docker.sock", "unix:///var/run/docker.sock",
"unix:///var/run/docker.sock" "unix:///var/run/docker.sock"

View file

@ -65,6 +65,8 @@ datasource="/var/lib/drone/drone.sqlite"
# pass="" # pass=""
# [worker] # [worker]
# cert=""
# key=""
# nodes=[ # nodes=[
# "unix:///var/run/docker.sock", # "unix:///var/run/docker.sock",
# "unix:///var/run/docker.sock" # "unix:///var/run/docker.sock"

View file

@ -60,9 +60,8 @@ var (
pub *pubsub.PubSub pub *pubsub.PubSub
// Docker configuration details. // Docker configuration details.
tlscacert = config.String("docker-tlscacert", "") dockercrt = config.String("docker-cert", "")
tlscert = config.String("docker-tlscert", "") dockerkey = config.String("docker-key", "")
tlskey = config.String("docker-tlskey", "")
nodes StringArr nodes StringArr
db *sql.DB db *sql.DB