Skip to content

Commit e8594c2

Browse files
zupoj8r
authored andcommitted
Add systemd-ubuntu:25.10/systemd-ubuntu:questing
Add the Dockerfile and actions for Ubuntu 25.10 (Questing Quokka).
1 parent c236078 commit e8594c2

File tree

3 files changed

+38
-1
lines changed

3 files changed

+38
-1
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff 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:

systemd/ubuntu/25.10.Dockerfile

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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"]

systemd/ubuntu/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
You 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`

0 commit comments

Comments
 (0)