Skip to content

Updates to the v1.40 upstream Docker API #25

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Aug 14, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2
jobs:
test_ssl:
docker:
- image: docker:18.09.1
- image: docker:19.03.1
steps:
- checkout
- setup_remote_docker
Expand All @@ -15,7 +15,7 @@ jobs:
- run: docker run -ti -e DOCKER_CERT_PATH=/certs -e DOCKER_HOST='tcp://test.example.com:2376' --volumes-from certs --rm --link test-docker-daemon:docker bollard cargo test --features ssl -- --test test_version_ssl
test_tls:
docker:
- image: docker:18.09.1
- image: docker:19.03.1
steps:
- checkout
- setup_remote_docker
Expand All @@ -29,7 +29,7 @@ jobs:
- run: docker run -ti -e DOCKER_CERT_PATH=/certs -e DOCKER_HOST='tcp://test.example.com:2376' --volumes-from certs --rm --link test-docker-daemon:docker bollard cargo test -- --test test_version_tls
test_http:
docker:
- image: docker:18.09.1
- image: docker:19.03.1
steps:
- checkout
- setup_remote_docker
Expand All @@ -38,15 +38,15 @@ jobs:
- run: docker run -ti -e DOCKER_HOST='tcp://test.example.com:2375' --rm --link test-docker-daemon:docker bollard cargo test --features test_http -- --test test_version_http
test_unix:
docker:
- image: docker:18.09.1
- image: docker:19.03.1
steps:
- checkout
- setup_remote_docker
- run: docker build -t bollard .
- run: dockerfiles/bin/run_integration_tests.sh
test_doc:
docker:
- image: docker:18.09.1
- image: docker:19.03.1
steps:
- checkout
- setup_remote_docker
Expand Down
Loading