feat: add Docker setup for RouterOS and Mailpit services

This commit is contained in:
Alexander Tebeiv 2026-06-21 16:41:46 +02:00
parent d3eb3b59be
commit 014429f721
4 changed files with 154 additions and 0 deletions

View file

@ -0,0 +1,9 @@
FROM alpine:3.23
RUN apk add --no-cache openssh-client
COPY routeros-init.sh /usr/local/bin/routeros-init
RUN chmod +x /usr/local/bin/routeros-init
ENTRYPOINT ["/usr/local/bin/routeros-init"]