11 Commits

6 changed files with 99 additions and 37 deletions

View File

@@ -4,39 +4,12 @@ type: docker
name: build
steps:
- name: notify-start
image: pztrn/discordrone
settings:
webhook_id:
from_secret: discord_webhook_id
webhook_token:
from_secret: discord_webhook_secret
message: 'Starting building **{{repo.name}}#{{build.number}}@{{build.commit}}** @ {{datetime build.started "02-Jan-2006 15:04:05 MST" "Asia/Yekaterinburg"}} (See {{build.link}} for logs).'
- name: docker
image: plugins/docker
image: code.pztrn.name/containers/mirror/plugins/docker:20.13.0
settings:
username:
from_secret: dockerhub_user
registry: code.pztrn.name
username: drone
password:
from_secret: dockerhub_password
repo: pztrn/rainloop
from_secret: drone_secret
repo: code.pztrn.name/containers/rainloop
auto_tag: true
- name: notify-end
when:
status:
- success
- failure
image: pztrn/discordrone
settings:
webhook_id:
from_secret: discord_webhook_id
webhook_token:
from_secret: discord_webhook_secret
message: "
{{#success build.status}}
**{{repo.name}}#{{build.number}}@{{build.commit}}** deployed.
{{ else }}
**{{repo.name}}#{{build.number}}@{{build.commit}}** failed. See {{build.link}}.
{{/success}}"

61
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,61 @@
image: docker:19.03.13
services:
- docker:19.03.13-dind
variables:
DOCKER_HOST: tcp://docker:2375
DOCKER_TCP_PORT: 2375
DOCKER_TLS_CERTDIR: ""
LOCAL_REGISTRY_IMAGE_LATEST: $CI_REGISTRY_IMAGE:latest
LOCAL_REGISTRY_IMAGE_TAGGED: $CI_REGISTRY_IMAGE:$CI_COMMIT_TAG
DOCKERHUB_IMAGE_LATEST: pztrn/rainloop:latest
DOCKERHUB_IMAGE_TAGGED: pztrn/rainloop:$CI_COMMIT_TAG
stages:
- build
before_script:
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
- docker login -u "$DOCKERHUB_USER" -p "$DOCKERHUB_PASSWORD"
- docker info
build-local-registry-latest:
stage: build
tags:
- docker
script:
- docker build --pull -t $LOCAL_REGISTRY_IMAGE_LATEST .
- docker push $LOCAL_REGISTRY_IMAGE_LATEST
only:
- master
build-local-registry-version:
stage: build
tags:
- docker
script:
- docker build --pull -t $LOCAL_REGISTRY_IMAGE_TAGGED .
- docker push $LOCAL_REGISTRY_IMAGE_TAGGED
only:
- tags
build-dockerhub-latest:
stage: build
tags:
- docker
script:
- docker build --pull -t $DOCKERHUB_IMAGE_LATEST .
- docker push $DOCKERHUB_IMAGE_LATEST
only:
- master
build-dockerhub-version:
stage: build
tags:
- docker
script:
- docker build --pull -t $DOCKERHUB_IMAGE_TAGGED .
- docker push $DOCKERHUB_IMAGE_TAGGED
only:
- tags

View File

@@ -1,4 +1,4 @@
FROM alpine:3.11
FROM code.pztrn.name/containers/mirror/alpine:3.16
# Install necessary things
RUN apk add --no-cache \
@@ -25,7 +25,7 @@ RUN apk add --no-cache \
# Get rainloop.
RUN mkdir -p /var/www/rainloop && \
cd /var/www/rainloop && \
wget https://github.com/RainLoop/rainloop-webmail/releases/download/v1.13.0/rainloop-community-1.13.0.zip && \
wget https://github.com/RainLoop/rainloop-webmail/releases/download/v1.16.0/rainloop-community-1.16.0.zip && \
ls -la && \
unzip rainloop-community-*.zip && \
chown -R nginx:nginx /var/www/rainloop && \

View File

@@ -5,3 +5,29 @@ This repository contains Rainloop webmail Docker container build scripts and nec
## Persistent things
There are some things that should be preserved between container's restarts. Please, add new volume for ``/var/www/rainloop/data`` directory.
If you're binding directory except of creating volume please do proper ``chown``:
```shell
chown -R 100:101 /dir/with/data
```
## Use with docker-compose
You may use this image with docker-compose like that:
```yaml
version: "2.4"
services:
rainloop:
restart: always
image: "pztrn/rainloop:1.16.0"
volumes:
- "/root/rainloop/data:/var/www/rainloop/data"
ports:
- "5480:80"
cpus: 2
mem_limit: 1G
memswap_limit: 0
```

View File

@@ -9,6 +9,8 @@ server {
autoindex on;
charset utf-8;
client_max_body_size 500m;
# To not cache requests bodys on disk.
client_body_buffer_size 16m;
gzip on;

View File

@@ -394,7 +394,7 @@ max_input_time = 60
;max_input_nesting_level = 64
; How many GET/POST/COOKIE input variables may be accepted
;max_input_vars = 1000
max_input_vars = 100000
; Maximum amount of memory a script may consume (128MB)
; http://php.net/memory-limit