Skip to content
This repository has been archived by the owner on Sep 29, 2024. It is now read-only.

Commit

Permalink
Try removing autologin
Browse files Browse the repository at this point in the history
  • Loading branch information
amezin committed Aug 16, 2023
1 parent 152e3fe commit 41c367d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
3 changes: 2 additions & 1 deletion archlinux.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ COPY common archlinux /
RUN systemctl enable xvfb@:99.service && \
systemctl set-default multi-user.target && \
systemctl mask systemd-oomd low-memory-monitor rtkit-daemon udisks2 && \
useradd -m -U -G users,adm gnomeshell && \
useradd -m -U -G users,adm -u 1000 gnomeshell && \
systemctl enable user@1000 && \
systemd-machine-id-setup

# dbus port
Expand Down

This file was deleted.

3 changes: 2 additions & 1 deletion debian.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ COPY common debian /
RUN systemctl enable xvfb@:99.service && \
systemctl set-default multi-user.target && \
systemctl mask systemd-oomd low-memory-monitor rtkit-daemon udisks2 && \
useradd -m -U -G users,adm gnomeshell
useradd -m -U -G users,adm -u 1000 gnomeshell && \
systemctl enable user@1000

# dbus port
EXPOSE 1234
Expand Down
3 changes: 2 additions & 1 deletion fedora.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ RUN systemctl enable xvfb@:99.service && \
systemctl --global enable dbus-daemon && \
systemctl mask systemd-oomd low-memory-monitor rtkit-daemon udisks2 && \
systemctl --global mask org.gnome.SettingsDaemon.Subscription && \
adduser -m -U -G users,adm gnomeshell
adduser -m -U -G users,adm -u 1000 gnomeshell && \
systemctl enable user@1000

# dbus port
EXPOSE 1234
Expand Down

0 comments on commit 41c367d

Please sign in to comment.