とりあえず実験したいときにsystemdが動くようにする設定方法。
9系から/sbin/initが無くなったりしておりDockerfileで小細工が必要となっている。
以下参考
AlmaLinux Container image for Ansible
https://github.com/bpadair32/docker-image-alma9-systemd
Rocky Linux 9 Docker Image with systemd
https://github.com/eniocarboni/docker-rockylinux-systemd
Running Amazon Linux 2023 with systemd in Docker
https://github.com/compwright/amazonlinux-2023-systemd
8系
docker-compose.yml
services:
alma8:
image: almalinux:8.10-20240723
container_name: alma8
privileged: true
command: /sbin/init
docker compose up -d
docker compose exec alma8 /bin/bash
[root@1d4aa45a0f49 /]# dnf module enable -y nginx:1.24
[root@1d4aa45a0f49 /]# dnf install -y nginx
[root@1d4aa45a0f49 /]# systemctl start nginx
9系
Dockerfile
FROM amazonlinux:2023.5.20240708.0
RUN dnf install -y systemd kernel-libbpf
CMD ["/usr/sbin/init"]
docker-compose.yml
services:
amazon2023:
build:
context: .
container_name: amazon2023
tty: true
cgroup: host
cap_add:
- SYS_ADMIN
- NET_ADMIN
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:rw
docker compose up -d
docker compose exec amazon2023 /bin/bash
bash-5.2# dnf install -y nginx
bash-5.2# systemctl start nginx