-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b24ffe0
commit a22934a
Showing
19 changed files
with
130 additions
and
154 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
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
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
10 changes: 5 additions & 5 deletions
10
...eos/molecule/default/dockerfile_alpine.j2 → ...bareos/molecule/default/Dockerfile_alpine
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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
ARG image_platform | ||
ARG image_tag | ||
FROM ${image_platform}:${image_tag} | ||
|
||
# hadolint ignore=SC3014,SC2154 | ||
RUN apk update; \ | ||
apk add --no-cache sudo bash dbus python3 gnupg ca-certificates openrc; \ | ||
apk --no-cache add sudo bash dbus python3 gnupg ca-certificates openrc; \ | ||
mkdir -p /run/openrc; \ | ||
touch /run/openrc/softlevel; \ | ||
echo 'rc_provide="loopback net"' >> /etc/rc.conf; \ | ||
sed -i -e 's/#rc_sys=""/rc_sys="lxc"/g' -e 's/^#\(rc_logger="YES"\)$/\1/' /etc/rc.conf; \ | ||
sed -i '/tty/d' /etc/inittab; \ | ||
sed -i 's/hostname $opts/# hostname $opts/g' /etc/init.d/hostname; \ | ||
sed -i 's/mount -t tmpfs/# mount -t tmpfs/g' /lib/rc/sh/init.sh | ||
sed -i "/tty/d" /etc/inittab; \ | ||
sed -i "s/hostname $opts/# hostname $opts/g" /etc/init.d/hostname; \ | ||
sed -i "s/mount -t tmpfs/# mount -t tmpfs/g" /lib/rc/sh/init.sh | ||
|
||
VOLUME ["/sys/fs/cgroup"] | ||
ENTRYPOINT ["/sbin/init"] |
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
File renamed without changes.
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
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,16 @@ | ||
ARG image_platform | ||
ARG image_tag | ||
FROM ${image_platform}:${image_tag} | ||
|
||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN apt-get update; \ | ||
apt-get install -y python3 sudo bash ca-certificates gnupg2 iproute2 python3-apt aptitude apt-utils lsb-release \ | ||
--no-install-recommends; \ | ||
apt-get install -y software-properties-common dialog dbus wget procps --no-install-recommends; \ | ||
apt-get clean; \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
VOLUME ["/sys/fs/cgroup"] | ||
CMD ["/lib/systemd/systemd"] |
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
10 changes: 5 additions & 5 deletions
10
...sql/molecule/default/dockerfile_alpine.j2 → ...gresql/molecule/default/Dockerfile_alpine
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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
ARG image_platform | ||
ARG image_tag | ||
FROM ${image_platform}:${image_tag} | ||
|
||
# hadolint ignore=SC3014,SC2154 | ||
RUN apk update; \ | ||
apk add --no-cache sudo bash dbus python3 gnupg ca-certificates openrc; \ | ||
apk --no-cache add sudo bash dbus python3 gnupg ca-certificates openrc; \ | ||
mkdir -p /run/openrc; \ | ||
touch /run/openrc/softlevel; \ | ||
echo 'rc_provide="loopback net"' >> /etc/rc.conf; \ | ||
sed -i -e 's/#rc_sys=""/rc_sys="lxc"/g' -e 's/^#\(rc_logger="YES"\)$/\1/' /etc/rc.conf; \ | ||
sed -i '/tty/d' /etc/inittab; \ | ||
sed -i 's/hostname $opts/# hostname $opts/g' /etc/init.d/hostname; \ | ||
sed -i 's/mount -t tmpfs/# mount -t tmpfs/g' /lib/rc/sh/init.sh | ||
sed -i "/tty/d" /etc/inittab; \ | ||
sed -i "s/hostname $opts/# hostname $opts/g" /etc/init.d/hostname; \ | ||
sed -i "s/mount -t tmpfs/# mount -t tmpfs/g" /lib/rc/sh/init.sh | ||
|
||
VOLUME ["/sys/fs/cgroup"] | ||
ENTRYPOINT ["/sbin/init"] |
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
File renamed without changes.
This file was deleted.
Oops, something went wrong.
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
10 changes: 5 additions & 5 deletions
10
...ent/molecule/default/dockerfile_alpine.j2 → ..._agent/molecule/default/Dockerfile_alpine
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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
ARG image_platform | ||
ARG image_tag | ||
FROM ${image_platform}:${image_tag} | ||
|
||
# hadolint ignore=SC3014,SC2154 | ||
RUN apk update; \ | ||
apk add --no-cache sudo bash dbus python3 gnupg ca-certificates openrc coreutils iputils pcre2 tzdata; \ | ||
apk --no-cache add --no-cache sudo bash dbus python3 gnupg ca-certificates openrc coreutils iputils pcre2 tzdata; \ | ||
mkdir -p /run/openrc; \ | ||
touch /run/openrc/softlevel; \ | ||
echo 'rc_provide="loopback net"' >> /etc/rc.conf; \ | ||
sed -i -e 's/#rc_sys=""/rc_sys="lxc"/g' -e 's/^#\(rc_logger="YES"\)$/\1/' /etc/rc.conf; \ | ||
sed -i '/tty/d' /etc/inittab; \ | ||
sed -i 's/hostname $opts/# hostname $opts/g' /etc/init.d/hostname; \ | ||
sed -i 's/mount -t tmpfs/# mount -t tmpfs/g' /lib/rc/sh/init.sh | ||
sed -i "/tty/d" /etc/inittab; \ | ||
sed -i "s/hostname $opts/# hostname $opts/g" /etc/init.d/hostname; \ | ||
sed -i "s/mount -t tmpfs/# mount -t tmpfs/g" /lib/rc/sh/init.sh | ||
|
||
VOLUME ["/sys/fs/cgroup"] | ||
ENTRYPOINT ["/sbin/init"] |
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.