File tree Expand file tree Collapse file tree 3 files changed +38
-1
lines changed Expand file tree Collapse file tree 3 files changed +38
-1
lines changed Original file line number Diff line number Diff line change @@ -106,6 +106,15 @@ jobs:
106106 tags : |-
107107 jrei/systemd-ubuntu:25.04
108108 jrei/systemd-ubuntu:plucky
109+ - name : systemd-ubuntu-25.10
110+ dockerfile : systemd/ubuntu/25.10.Dockerfile
111+ platforms : |-
112+ linux/amd64
113+ linux/arm/v7
114+ linux/arm64
115+ tags : |-
116+ jrei/systemd-ubuntu:25.10
117+ jrei/systemd-ubuntu:questing
109118 jrei/systemd-ubuntu:latest
110119
111120 steps :
Original file line number Diff line number Diff line change 1+ FROM ubuntu:25.10
2+
3+ ENV container docker
4+ ENV LC_ALL C
5+ ENV DEBIAN_FRONTEND noninteractive
6+
7+ RUN apt-get update \
8+ && apt-get install -y systemd systemd-sysv \
9+ && apt-get clean \
10+ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
11+
12+ RUN cd /lib/systemd/system/sysinit.target.wants/ \
13+ && rm $(ls | grep -v systemd-tmpfiles-setup)
14+
15+ RUN rm -f /lib/systemd/system/multi-user.target.wants/* \
16+ /etc/systemd/system/*.wants/* \
17+ /lib/systemd/system/local-fs.target.wants/* \
18+ /lib/systemd/system/sockets.target.wants/*udev* \
19+ /lib/systemd/system/sockets.target.wants/*initctl* \
20+ /lib/systemd/system/basic.target.wants/* \
21+ /lib/systemd/system/anaconda.target.wants/* \
22+ /lib/systemd/system/plymouth* \
23+ /lib/systemd/system/systemd-update-utmp*
24+
25+ VOLUME [ "/sys/fs/cgroup" ]
26+
27+ CMD ["/lib/systemd/systemd" ]
Original file line number Diff line number Diff line change 33You can use this image as a base container to run systemd services inside.
44
55## Supported tags
6- - ` 25.04 ` , ` latest `
6+ - ` 25.10 ` , ` latest `
7+ - ` 25.04 `
78 - ` 24.04 `
89 - ` 22.04 `
910 - ` 20.04 `
You can’t perform that action at this time.
0 commit comments