Skip to content

Commit 2397ab1

Browse files
authored
Reenable docker layer caching (#428)
After CI plan change, reenable docker layer caching feature to speed up docker image (re)building
1 parent 3877393 commit 2397ab1

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.circleci/config.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,7 @@ jobs:
112112
integration-tests:
113113
machine:
114114
image: ubuntu-2004:202107-02
115-
# This is super nice and works like a charm BUT unfortunately it is now explicitly disabled on the free plan. Pitty
116-
# docker_layer_caching: true
115+
docker_layer_caching: true
117116
environment:
118117
COMPOSE_FILE: ".circleci/docker-compose.yml"
119118
steps:
@@ -190,6 +189,7 @@ jobs:
190189
upgrade-tests:
191190
machine:
192191
image: ubuntu-2004:202107-02
192+
docker_layer_caching: true
193193
environment:
194194
COMPOSE_FILE: ".circleci/docker-compose.yml"
195195
steps:
@@ -236,7 +236,9 @@ jobs:
236236
destination: logs
237237

238238
production-stack-tests:
239-
machine: true
239+
machine:
240+
image: ubuntu-2004:202107-02
241+
docker_layer_caching: true
240242
environment:
241243
COMPOSE_FILE: "docker-compose.yml:.circleci/docker-compose.test-prod-db.yaml"
242244
steps:

0 commit comments

Comments
 (0)