Move containers to a dedicated org path

This commit is contained in:
zontreck 2025-03-09 18:07:56 -07:00
parent fe8f7d2a11
commit da7e2210b7
21 changed files with 144 additions and 108 deletions

11
DIND/Wings/Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM git.zontreck.com/packages/dind:latest
RUN curl -L -o /usr/local/bin/wings "https://github.com/pelican-dev/wings/releases/latest/download/wings_linux_$([[ "$(uname -m)" == "x86_64" ]] && echo "amd64" || echo "arm64")"
RUN mkdir -pv /etc/pelican /var/run/wings
RUN chmod u+x /usr/local/bin/wings
ADD ./entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/bin/bash" "/entrypoint.sh"]