0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

コンテナ内でsystemdを使う方法

Posted at

とりあえず実験したいときに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
0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?