Compare commits

..

No commits in common. "master" and "1.16.0" have entirely different histories.

3 changed files with 49 additions and 39 deletions

View File

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

View File

@ -1,23 +1,26 @@
FROM code.pztrn.name/containers/mirror/alpine:3.16.0
FROM alpine:3.12
# Install necessary things
RUN apk add --no-cache \
git \
nginx \
php8-curl \
php8-dom \
php8-fpm \
php8-iconv \
php8-json \
php8-openssl \
php8-pdo_mysql \
php8-pdo_pgsql \
php8-pdo_sqlite \
php8-xml \
php7-curl \
php7-dom \
php7-fpm \
php7-iconv \
php7-json \
php7-openssl \
php7-pdo_mysql \
php7-pdo_pgsql \
php7-pdo_sqlite \
php7-xml \
s6 \
unzip \
wget && \
rm /etc/php8/php-fpm.d/www.conf
rm /etc/nginx/conf.d/default.conf && \
rm /etc/php7/php-fpm.d/www.conf && \
mkdir /var/run/nginx && \
chown -R nginx:nginx /var/run/nginx
# Get rainloop.
RUN mkdir -p /var/www/rainloop && \

View File

@ -10,24 +10,4 @@ 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
```
```