archive
This commit is contained in:
13
rainloop/Dockerfile
Normal file
13
rainloop/Dockerfile
Normal 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
11
rainloop/build_and_run.sh
Executable 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
3
rainloop/review
Executable 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
1
rainloop/run_newer.sh
Normal file
@@ -0,0 +1 @@
|
||||
docker build -t rainloop:latest . && docker run --rm -it -p 33144:33144 --name rainloop rainloop:latest
|
||||
Reference in New Issue
Block a user