From 596835a0a621da10329c4ec094ce1afcb5280753 Mon Sep 17 00:00:00 2001 From: Steven Polley Date: Sat, 20 Jun 2020 20:50:44 -0600 Subject: [PATCH] Improve build container section --- README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6fa7e82..7ec0ae2 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,15 @@ A simple view counter for a website ### Build Container -Disclaimer! If you use this, you'll need to build the container yourself. My registry is used for my internal infrastructure only and is not publicly available. +Disclaimer! If you use this, you'll need to build the container yourself. I have a CICD pipeline setup, but my registry is used for my internal infrastructure only and is not publicly available. + +Because this is a staticly linked binary with no external dependancies, the container literally only contains the binary file, keeping it clean and low in size (6.3MB). I never did understand why people include operating systems in containers. + +```bash + +docker build -t siteviewconter:latest . + +``` ### Example docker-compose.yml @@ -19,7 +27,7 @@ version: '3.7' services: counter: - image: registry.deadbeef.codes/siteviewcounter:latest + image: siteviewcounter:latest restart: always expose: - "8080"