-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Dockerfile for running Manjaro + systemd + Docker in a sysbox con…
…tainer. Signed-off-by: Cesar Talledo <[email protected]>
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# | ||
# ManjaroLinux + Systemd + Docker | ||
# | ||
# Description: | ||
# | ||
# This image serves as a basic reference example for user's looking to run | ||
# ManjaroLinux + Systemd + Docker inside a container. | ||
# | ||
# Usage: | ||
# | ||
# $ docker run --runtime=sysbox-runc -it --rm --name=syscont nestybox/manjarolinux-systemd-docker | ||
# | ||
# This will run systemd and prompt for a user login; the default user/password | ||
# in this image is "admin/admin". Docker will be automatically started and user | ||
# admin can launch inner Docker containers. | ||
|
||
FROM nestybox/manjarolinux-systemd | ||
|
||
RUN pacman --noconfirm -Syu \ | ||
bash-completion \ | ||
docker | ||
|
||
RUN systemctl enable docker | ||
|
||
RUN usermod -aG docker admin |