Fix markdownfmt 👼
This commit is contained in:
parent
37983401aa
commit
2138e6afd6
|
|
@ -22,13 +22,13 @@ Use like you would any other base image:
|
|||
FROM alpine:3.1
|
||||
RUN apk add --update mysql-client && rm -rf /var/cache/apk/*
|
||||
ENTRYPOINT ["mysql"]
|
||||
|
||||
|
||||
This example has a virtual image size of only 16 MB. Compare that to our good friend Ubuntu:
|
||||
|
||||
FROM ubuntu:14.04
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y mysql-client \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
&& apt-get install -y mysql-client \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
ENTRYPOINT ["mysql"]
|
||||
|
||||
This yields us a virtual image size of about 232 MB image.
|
||||
|
|
|
|||
|
|
@ -13,13 +13,13 @@ Use like you would any other base image:
|
|||
FROM alpine:3.1
|
||||
RUN apk add --update mysql-client && rm -rf /var/cache/apk/*
|
||||
ENTRYPOINT ["mysql"]
|
||||
|
||||
|
||||
This example has a virtual image size of only 16 MB. Compare that to our good friend Ubuntu:
|
||||
|
||||
FROM ubuntu:14.04
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y mysql-client \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
&& apt-get install -y mysql-client \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
ENTRYPOINT ["mysql"]
|
||||
|
||||
This yields us a virtual image size of about 232 MB image.
|
||||
|
|
|
|||
Loading…
Reference in New Issue