File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
content/manuals/compose/how-tos Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -9,12 +9,12 @@ weight: 50
99
1010To reduce push/pull time and image weight, a common practice for Compose applications is to have services
1111share base layers as much as possible. You will typically select the same operating system base image for
12- all services. But you also can get one step further sharing image layers when your images share the same
12+ all services. But you can also get one step further by sharing image layers when your images share the same
1313system packages. The challenge to address is then to avoid repeating the exact same Dockerfile instruction
1414in all services.
1515
1616For illustration, this page assumes you want all your services to be built with an ` alpine ` base
17- image and install system package ` openssl ` .
17+ image and install the system package ` openssl ` .
1818
1919## Multi-stage Dockerfile
2020
@@ -161,4 +161,4 @@ Bake can also be selected as the default builder by editing your `$HOME/.docker/
161161 }
162162 ...
163163}
164- ` ` `
164+ ` ` `
You can’t perform that action at this time.
0 commit comments