├── .gitignore ├── Dockerfile ├── README.md ├── container ├── convert-passwd-group-to-userdb ├── label-install ├── label-uninstall ├── nsswitch-systemd-first.conf.patch ├── nsswitch.conf.patch ├── systemd │ ├── gdm-systemd.service │ └── gdm.service └── userdb │ ├── gdm.group │ └── gdm.user ├── entrypoint.sh ├── gdm.yml ├── systemd-nspawn-experiment ├── create-container-nspawn.sh ├── nspawn │ └── tumbleweed.nspawn └── systemd-nspawn@tumbleweed.service.d │ └── override.conf └── systemd-sysext ├── gdm └── service.conf └── import-from-oci.sh /.gitignore: -------------------------------------------------------------------------------- 1 | gdm.tar 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrozat/gdm-container/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrozat/gdm-container/HEAD/README.md -------------------------------------------------------------------------------- /container/convert-passwd-group-to-userdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrozat/gdm-container/HEAD/container/convert-passwd-group-to-userdb -------------------------------------------------------------------------------- /container/label-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrozat/gdm-container/HEAD/container/label-install -------------------------------------------------------------------------------- /container/label-uninstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrozat/gdm-container/HEAD/container/label-uninstall -------------------------------------------------------------------------------- /container/nsswitch-systemd-first.conf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrozat/gdm-container/HEAD/container/nsswitch-systemd-first.conf.patch -------------------------------------------------------------------------------- /container/nsswitch.conf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrozat/gdm-container/HEAD/container/nsswitch.conf.patch -------------------------------------------------------------------------------- /container/systemd/gdm-systemd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrozat/gdm-container/HEAD/container/systemd/gdm-systemd.service -------------------------------------------------------------------------------- /container/systemd/gdm.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrozat/gdm-container/HEAD/container/systemd/gdm.service -------------------------------------------------------------------------------- /container/userdb/gdm.group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrozat/gdm-container/HEAD/container/userdb/gdm.group -------------------------------------------------------------------------------- /container/userdb/gdm.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrozat/gdm-container/HEAD/container/userdb/gdm.user -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrozat/gdm-container/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /gdm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrozat/gdm-container/HEAD/gdm.yml -------------------------------------------------------------------------------- /systemd-nspawn-experiment/create-container-nspawn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrozat/gdm-container/HEAD/systemd-nspawn-experiment/create-container-nspawn.sh -------------------------------------------------------------------------------- /systemd-nspawn-experiment/nspawn/tumbleweed.nspawn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrozat/gdm-container/HEAD/systemd-nspawn-experiment/nspawn/tumbleweed.nspawn -------------------------------------------------------------------------------- /systemd-nspawn-experiment/systemd-nspawn@tumbleweed.service.d/override.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrozat/gdm-container/HEAD/systemd-nspawn-experiment/systemd-nspawn@tumbleweed.service.d/override.conf -------------------------------------------------------------------------------- /systemd-sysext/gdm/service.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrozat/gdm-container/HEAD/systemd-sysext/gdm/service.conf -------------------------------------------------------------------------------- /systemd-sysext/import-from-oci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcrozat/gdm-container/HEAD/systemd-sysext/import-from-oci.sh --------------------------------------------------------------------------------