initial commit

Signed-off-by: Marc Ahlgrim <marc@onemarcfifty.com>
This commit is contained in:
Marc Ahlgrim
2022-08-02 16:35:35 +02:00
parent 90e2e87524
commit 5473938286
4 changed files with 79 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
FROM rundeck/rundeck:4.4.0
# minimal rundeck with ansible
# no mariadb
USER root
RUN apt-get -y update && \
apt-get -y install \
apt-transport-https \
python3-pip
RUN pip install --upgrade pip
RUN pip install ansible
USER rundeck
#VOLUME ["/home/rundeck/server/data"]
#EXPOSE 4440
#ENTRYPOINT [ "docker-lib/entry.sh" ]