summaryrefslogtreecommitdiff
path: root/tests/fixtures/override-yaml-files/docker-compose.yml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/fixtures/override-yaml-files/docker-compose.yml')
-rw-r--r--tests/fixtures/override-yaml-files/docker-compose.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/fixtures/override-yaml-files/docker-compose.yml b/tests/fixtures/override-yaml-files/docker-compose.yml
new file mode 100644
index 00000000..5f2909d6
--- /dev/null
+++ b/tests/fixtures/override-yaml-files/docker-compose.yml
@@ -0,0 +1,10 @@
+
+web:
+ image: busybox:latest
+ command: "sleep 100"
+ links:
+ - db
+
+db:
+ image: busybox:latest
+ command: "sleep 200"