1
0

Compare commits

..

4 Commits

Author SHA1 Message Date
699498fe2c feat: support configuring a shell for a user
Some checks failed
continuous-integration/drone/push Build is failing
2022-09-17 15:01:11 +02:00
aeee18b935 feat: install vim 2022-09-17 15:00:56 +02:00
825e872a8d fix(Dockerfile): fail build when apt-get fails 2022-09-17 15:00:56 +02:00
058adb0514 feat: add support for configuring SSH2 HostKeys 2022-09-17 15:00:53 +02:00

View File

@ -15,7 +15,7 @@
| Key | Format | Description |
| --- | --- | --- |
| `ROOT_AUTHORIZED_KEYS` | `/path/to/file` | Path to file that contains the public SSH keys that can be used for root user authentication. This file will be copied to `/root/.ssh/authorized_keys` |
| `HOSTKEYS` | `/path/to/hostkey` | Specifies a (semi-colon separated list of) file(s) containing a private host key used by SSH. |
| `HOSTKEYS` | `/path/to/hostkey;...` | Specifies a (semi-colon separated list of) file(s) containing a private host key used by SSH. |
| `USERADD` | `{username}:{uid}:{gid}:{shell};...` | Create user account(s) on startup |
| `GROUPADD` | `{groupname}:{gid};...` | Create group account(s) on startup |
| `BASE_DIR` | `/home` | Basedir used for user account creation (Default: `/home`) |