feat: add tailscale

This commit is contained in:
Benjamin Sherman
2023-03-07 23:48:54 -06:00
parent 6c561ea9e0
commit fa41079040

View File

@@ -11,23 +11,27 @@ toolbox \
zincati
# Install needed packages
RUN rpm-ostree install \
cockpit-system \
cockpit-ostree \
cockpit-podman \
cockpit-networkmanager \
cockpit-storaged \
distrobox \
docker-compose \
duperemove \
firewalld \
podman \
podman-docker \
podman-compose \
wget \
wireguard-tools \
xdg-dbus-proxy \
xdg-user-dirs
RUN cd /etc/yum.repos.d/ \
&& curl -LO https://pkgs.tailscale.com/stable/fedora/tailscale.repo \
&& rpm-ostree install \
cockpit-system \
cockpit-ostree \
cockpit-podman \
cockpit-networkmanager \
cockpit-storaged \
distrobox \
docker-compose \
duperemove \
firewalld \
podman \
podman-docker \
podman-compose \
tailscale \
wget \
wireguard-tools \
xdg-dbus-proxy \
xdg-user-dirs \
&& rm tailscale.repo
# Finalize
RUN sed -i 's/#AutomaticUpdatePolicy.*/AutomaticUpdatePolicy=stage/' /etc/rpm-ostreed.conf && \