summarylogtreecommitdiffstats
path: root/config-example.json
diff options
context:
space:
mode:
authorBrian Allred2019-08-12 20:39:50 -0500
committerBrian Allred2019-08-12 20:39:50 -0500
commit792049568232102d41099fee058870fd81465255 (patch)
tree2c3582fdd21eebe52edb92a5d364d060d3187ff4 /config-example.json
parentddab971a670044c1a21e785f6e52935e2d61433e (diff)
downloadaur-792049568232102d41099fee058870fd81465255.tar.gz
Bump to 0.3.0
Diffstat (limited to 'config-example.json')
-rw-r--r--config-example.json20
1 files changed, 13 insertions, 7 deletions
diff --git a/config-example.json b/config-example.json
index cf9646be9487..4f887b76ec40 100644
--- a/config-example.json
+++ b/config-example.json
@@ -1,13 +1,19 @@
// Provided as an example. Service reads from /etc/docker-waiter/config.json
// Binary reads from /etc/docker-waiter/config.json as root
// or $XDG_CONFIG_HOME/docker-waiter/config.json if not
-
{
- "MainContainer": "nginx",
- "DepContainers": [
- "proxy",
- "proxy2"
+ "ContainerConfigs": [
+ {
+ "MainContainer": "nginx",
+ "DepContainers": [
+ "proxy",
+ "proxy2"
+ ],
+ "CheckRunning": false,
+ "CheckDelay": 1
+ }
],
- "CheckRunning": false,
- "CheckDelay": 1
+ "DockerConfig": {
+ "Host": "localhost" // Default if left blank
+ }
} \ No newline at end of file