Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@ format, so it's easy to modify.
If no file exists, then Container Shell will assume some defaults. The main
section you'll want to adjust for your installation is the ``config`` section,
where you can define which container image a user will be placed into. By default,
Container Shell will use `busybox <https://hub.docker.com/_/busybox>`_ (just
because it's so small).
Container Shell will use the latest `debian <https://www.debian.org/>`_ image.

A sample config is installed to ``/etc/container_shell/sample.config.ini``, which
will have additional context. But if you're checking out the repo, the sample
Expand Down
2 changes: 1 addition & 1 deletion container_shell/lib/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def _default():
config.add_section('qos')
config.add_section('binaries')

config.set('config', 'image', 'busybox:latest')
config.set('config', 'image', 'debian:latest')
config.set('config', 'hostname', 'someserver')
config.set('config', 'auto_refresh', '')
config.set('config', 'skip_users', '')
Expand Down
2 changes: 1 addition & 1 deletion tests/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def test_defaults(self):
test_config.add_section('qos')
test_config.add_section('binaries')

test_config.set('config', 'image', 'busybox:latest')
test_config.set('config', 'image', 'debian:latest')
test_config.set('config', 'hostname', 'someserver')
test_config.set('config', 'auto_refresh', '')
test_config.set('config', 'skip_users', '')
Expand Down