Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| docker_notes:init [2025-06-15 Sun wk24 11:03] – [docker builtin basic init] baumkp | docker_notes:init [2025-09-26 Fri wk39 19:37] (current) – [References] baumkp | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | {{tag> | + | {{tag> |
| ======Docker init Systems====== | ======Docker init Systems====== | ||
| There are a number of init systems used on docker containers, many are the defaults that ship with the standard Linux distributions, | There are a number of init systems used on docker containers, many are the defaults that ship with the standard Linux distributions, | ||
| Line 106: | Line 106: | ||
| *[[https:// | *[[https:// | ||
| - | ====alias in S6 init==== | + | =====alias in S6 init===== |
| - | I like the alias command to change some default CLI command flags, in particular ls => ls -la, which I normally call ll. I had no success using the alias command in S6 init scripts. I found the following solution. Basically adding | + | I like the alias command to change some default CLI command flags, in particular ls => ls -la, which I normally call ll. I had no success using the alias command in S6 init scripts. I found the following solution, by using the s6 pre_start_script to add a link '' |
| - | <cod bash># | + | <code bash># |
| /bin/ln -s / | /bin/ln -s / | ||
| + | Where '' | ||
| + | <code bash># | ||
| + | exec ls -la " | ||
| =====References===== | =====References===== | ||
| - | *[[https:// | + | *[[https:// |
| *[[https:// | *[[https:// | ||
| *[[https:// | *[[https:// | ||