Hello,
When running the database container of the cookbook, the postgres
service is stopped and therefore after entering the namespace, doing
pgrep -a postgres does not show anything.
Similarly, for the simple container with config
```
(use-modules (gnu)
(gnu services ssh))
(operating-system
(host-name "container")
(timezone "Europe/Paris")
(file-systems (cons (file-system
(device (file-system-label "does-not-matter"))
(mount-point "/")
(type "ext4"))
%base-file-systems))
(bootloader (bootloader-configuration
(bootloader grub-bootloader)
(targets '("/dev/sdX"))))
(services
(cons*
(service openssh-service-type (openssh-configuration
(port-number 2222)
(permit-root-login #t)
(allow-empty-passwords? #t)))
%base-services)))
```
the ssh-daemon is stopped.
Thanks,
Scander