本篇文章是個經驗分享文,作者分享使用 Docker 作為開發環境時值得注意的 Best practices,透過這些經驗分享希望能夠讓開發者少走一些冤枉路。
原文提出了 15 個經驗談,這邊幫大家節錄幾個,有興趣的可以點選原文瞭解更多!
1. One thing at a time
2. Be ephemeral
3. Utilize .dockerignore
4. Less is more
5. Secrets should be secret
6. PID 1 is your birth right
7. Share and Care
8. Vulnerability Scan
9. Tag like you mean it
10. Permissions are costly
11. Source of Truth
12. Always official
13. Don’t include debug
14. Use entry point script smartly
15. Size does matter
One thing at a time
建置 Image 的時候專注做好一件事情,每個 Image 應該有一個專心要解決的問題,譬如一個應用程式,一個小工具等。對於 Nginx 這類型的 Image 來說,應該沒有人會期望於裡面看到有 Apache 的應用程式吧?
Be ephemeral
這個主要探討的是該 Image 本身建置時應該要以 stateless 的概念去處理,未來不論是透過 docker 或是 Kubernetes 來管理部署時,Contaienr 都很有機會被重啟,每次的重啟都意味該容器是重新啟動。所以千萬不要讓你的 Image 變成多次重啟會導致應用程式出問題的形式,任何的這類型資料應該都要透過外部取得,不要塞到你的 Image 內
Utilize .dockerignore
善用 .dockerignore 這個檔案來將不必要的檔案從 build 過程給排除,使用方法與 .gitignore 類似。透過這個檔案的設定可以避免 docker build 的時候不會把一些過大或是完全不需要的檔案都送給 docker daemon,不當浪費時間也浪費空間。
Less is more
避免安裝任何無關或是非必要的套件到你的 image 中,特別是那些 "nice to have" 的理由。
註: 我個人是滿討厭把 Image 弄得很乾淨的,除錯什麼工具都沒有,連 ash/sh/busybox/bash 都沒有的 image 更是我討厭中的排行榜冠軍
Secrets should be secret
任何機密資訊都應該要於運行期間動態載入,而不是建置期間塞入。請使用其他工具譬如 Vault 來管理這些機密資訊,並且執行期間讓 Container 能夠存取到正確的值。
PID 1 is your birth right
Linux 環境下會使用 SIGTERN, SIGKILL 等相關的 Singal 來戳你的應用程式,請確保你運行的應用程式要能夠攔截這些訊號來處理並完成有效的 Graceful shutdown.
Share and Care
如果環境中有多個 Image 彼此有共享相同的工具與功能,與其每個 Image 都單獨建置維護不如建置一個 Base Image,接者讓所有要使用的 image 去載入使用即可。
透過這種方式可以讓整體的維護性與管理性更為簡單,每個 image 可以減少重複的程式碼,同時要升級時只要針對 base Image 處理即可。
https://medium.com/pradpoddar/avoid-costly-mistakes-using-advanced-docker-development-best-practices-acd812784109
「linux nice」的推薦目錄:
- 關於linux nice 在 矽谷牛的耕田筆記 Facebook 的最佳貼文
- 關於linux nice 在 報導者 The Reporter Facebook 的最佳解答
- 關於linux nice 在 Nice priority of a Linux thread. - gists · GitHub 的評價
- 關於linux nice 在 Linux Nice and Priority values - YouTube 的評價
- 關於linux nice 在 Process niceness (priority) setting has no effect on Linux 的評價
- 關於linux nice 在 How can I verify `nice` is working? - Unix & Linux Stack ... 的評價
- 關於linux nice 在 linux进程nice值及其与优先级的关系 - 魏传柳 的評價
- 關於linux nice 在 Wiwi官大為老師介紹的這個#Linux 程式好!(Nice... - Musicha ... 的評價
linux nice 在 報導者 The Reporter Facebook 的最佳解答
【我們在尋找,一個前端工程師】
嘿!妳/你是對社會議題有興趣的開發者嗎?
《報導者》是台灣第一個以基金會形式營運的非營利網路媒體,致力於深度報導,促進社會對話與思考。
在《報導者》,你/妳將能善用所學,與記者、設計、編輯、攝影等專業人士合作,創造兼具社會意義與創新性的內容,讓報導以更有吸引力的方式被看見。
前端工程師們,來當我們的夥伴吧!
★履歷請寄至《報導者》信箱:contact@twreporter.org(來信註明"應徵前端工程師")
★寶寶不是工程師,但寶寶也想成為報導者夥伴→ http://bit.ly/2bhY3e1
-------------------------------------
Basic Requirement:
- Bachelor's Degree in Computer Science or related field or 2+ years of relevant work experience.
- Experience with Javascript, especially React.
- Experience with NodeJS.
- Understanding of common design patterns.
- HTML5, CSS3, SEO and Cross Browser techniques.
- Solid oral and written communication skills.
Nice to Have:
- Experience with CSS Preprocessors such as SASS, LESS or CSS modules
- Experience with Webpack, gulp or grunt.
- Experience with Redux, Flux or other frameworks related to React.
- DevOps skills (Linux containers/Docker, Nginx, GCP)
- Public (github, bitbucket) and open source contributions
- Experience in a team development environment
報導者 Github: https://github.com/twreporter/
報導者開放實驗室: https://medium.com/twreporter
【新聞遊戲】如果我是急診醫師: http://0media.tw/p/ergame/
【互動專題】旗山找「碴」 當農地變成掩埋場: https://www.twreporter.org/a/steel-slag/
【互動專題】台灣電影的「陰濕路」: https://www.twreporter.org/a/film-center
linux nice 在 Nice priority of a Linux thread. - gists · GitHub 的推薦與評價
Nice priority of a Linux thread. GitHub Gist: instantly share code, notes, and snippets. ... <看更多>