This commit is contained in:
bel
2021-09-14 06:39:36 -06:00
commit 8f5d1c4ec5
16 changed files with 356 additions and 0 deletions

13
rainloop/Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM php:5-apache
WORKDIR /var/www/rainloop/
RUN apt-get update && apt-get install -y \
unzip wget
RUN wget -qO- https://repository.rainloop.net/installer.php | php \
&& find . -type d -exec chmod 755 {} \; \
&& find . -type f -exec chmod 644 {} \; \
&& chown -R www-data: *
CMD ["php", "-S", "0.0.0.0:33144"]

11
rainloop/build_and_run.sh Executable file
View File

@@ -0,0 +1,11 @@
#! /bin/bash
docker pull mailu/rainloop:1.6
docker run --rm -it \
--name rainloop \
-p 8344:80 \
-v $(pwd)/mnt:/data \
-e MAX_FILESIZE=500000 \
-e MESSAGE_SIZE_LIMIT=500000 \
mailu/rainloop:1.6

3
rainloop/review Executable file
View File

@@ -0,0 +1,3 @@
** litearlly proxies webmail. Default frontend, no login to manage logins, stores gmail/ymail/etc creds in cookies and forwards requests.
not multi account--just log in here rather than webmail

1
rainloop/run_newer.sh Normal file
View File

@@ -0,0 +1 @@
docker build -t rainloop:latest . && docker run --rm -it -p 33144:33144 --name rainloop rainloop:latest