summaryrefslogtreecommitdiff
path: root/tests/fixtures/logs-composefile/docker-compose.yml
diff options
context:
space:
mode:
authorUlysses Souza <ulysses.souza@docker.com>2019-04-15 14:14:38 +0200
committerUlysses Souza <ulysses.souza@docker.com>2019-04-17 17:59:12 +0200
commite047169315d3ca7fa62de8a4bba436a058aa3e94 (patch)
tree76a19ff88c0886ae6fd58bca4e12072819c8fbc1 /tests/fixtures/logs-composefile/docker-compose.yml
parent2b24eb693c62ce8fd5f274f0fcb2837132a6a0b8 (diff)
Workaround race conditions on tests
Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
Diffstat (limited to 'tests/fixtures/logs-composefile/docker-compose.yml')
-rw-r--r--tests/fixtures/logs-composefile/docker-compose.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/fixtures/logs-composefile/docker-compose.yml b/tests/fixtures/logs-composefile/docker-compose.yml
index b719c91e..ea18f162 100644
--- a/tests/fixtures/logs-composefile/docker-compose.yml
+++ b/tests/fixtures/logs-composefile/docker-compose.yml
@@ -1,6 +1,6 @@
simple:
image: busybox:latest
- command: sh -c "echo hello && tail -f /dev/null"
+ command: sh -c "sleep 1 && echo hello && tail -f /dev/null"
another:
image: busybox:latest
- command: sh -c "echo test"
+ command: sh -c "sleep 1 && echo test"