diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-02 18:46:31 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-02 18:48:41 +0100 |
commit | ba19f5478917cd8b92c81f22e425a7407f98e995 (patch) | |
tree | 3f76d324e2ab6b3e5367ee61b0378a838713336e /test/docker-compose.yml | |
parent | test/unit: fix path to links-* tools (diff) | |
download | config-links-ba19f5478917cd8b92c81f22e425a7407f98e995.tar.gz config-links-ba19f5478917cd8b92c81f22e425a7407f98e995.zip |
fix Docker tests
Diffstat (limited to '')
-rw-r--r-- | test/docker-compose.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/docker-compose.yml b/test/docker-compose.yml index 1a4374a..ec55b25 100644 --- a/test/docker-compose.yml +++ b/test/docker-compose.yml @@ -1,7 +1,10 @@ version: '3' services: test: - image: "ubuntu:${DISTRO:-xenial}" + build: + context: docker/ + args: + DISTRO: "${DISTRO:-xenial}" volumes: - ../:/src command: /src/test/unit/test.sh |