Technical questionAccepted answer
Docker difference postgres:12 from postgres:12-alpine
Arch
Jun 11
0 views1
Docker hub contains several versions(tag) of Postgres db such as:
- 12.3, 12, latest
- 12.3-alpine, 12-alpine, alpine -...
What is diff between postgres version 12.3 and 12.3-alpine?
1 answer
Accepted answer · original discussion
Saturnin Pugnet
PermalinkJun 11
Alpine is a much smaller version of Linux, it results in a smaller container than the full postgres image. It is argued that because of its small size, alpine is also more secured. Although one disadvantage of alpine is that it contains a lot less functionality than a docker image running the full Linux OS.
1 question comment
Use comments to ask for clarification. Post a solution as an answer.
chashPermalink
Jun 11
If you click on those tags, you'll see the underlying Dockerfile. One is based on debian, the other on alpine.