diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2025-03-31 14:00:44 +0200 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2025-03-31 14:00:44 +0200 |
commit | 6e346223675291890b54c3fc04dd23409151d9f9 (patch) | |
tree | ccfa20a2259b9ae9814c72a7ca1ada961b204454 /files | |
download | ansible-ship-6e346223675291890b54c3fc04dd23409151d9f9.tar.gz ansible-ship-6e346223675291890b54c3fc04dd23409151d9f9.zip |
initial server setup
Diffstat (limited to 'files')
-rw-r--r-- | files/ftp/Dockerfile | 4 | ||||
-rw-r--r-- | files/mosquitto/mosquitto.conf | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/files/ftp/Dockerfile b/files/ftp/Dockerfile new file mode 100644 index 0000000..b2a816a --- /dev/null +++ b/files/ftp/Dockerfile @@ -0,0 +1,4 @@ +FROM alpine:latest + +RUN apk add --update-cache --upgrade --no-cache --purge py3-pyftpdlib \ + && rm -rf /var/cache/apk diff --git a/files/mosquitto/mosquitto.conf b/files/mosquitto/mosquitto.conf new file mode 100644 index 0000000..bcef3ed --- /dev/null +++ b/files/mosquitto/mosquitto.conf @@ -0,0 +1,4 @@ +socket_domain ipv4 +bind_address 0.0.0.0 +allow_anonymous true +log_dest file /mosquitto/log/mosquitto.log |