Skip to content
This repository was archived by the owner on Aug 16, 2021. It is now read-only.

Commit 905f480

Browse files
committed
CI: try setup_remote_docker
1 parent 55331ba commit 905f480

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.circleci/config.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,22 @@ jobs:
44
working_directory: ~/nancy
55
docker:
66
- image: ubuntu:16.04
7-
- image: postgresmen/postgres-with-stuff:pg9.6
87
steps:
98
- run:
109
name: Install software
1110
command: |
1211
apt-get update && apt-get install -y sudo wget \
1312
&& wget get.docker.com -q -S -O - | sudo sh
1413
- checkout
14+
- setup_remote_docker
15+
- run:
16+
name: Install Docker client
17+
command: |
18+
set -x
19+
VER="17.03.0-ce"
20+
curl -L -o /tmp/docker-$VER.tgz https://download.docker.com/linux/static/stable/x86_64/docker-$VER.tgz
21+
tar -xz -C /tmp -f /tmp/docker-$VER.tgz
22+
mv /tmp/docker/* /usr/bin
1523
- run:
1624
name: Tests
1725
command: |

0 commit comments

Comments
 (0)