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 name: build
steps: steps:
- name: docker - name: notify-start
image: code.pztrn.name/containers/mirror/plugins/docker:20.13.0 image: pztrn/discordrone
settings: settings:
registry: code.pztrn.name webhook_id:
username: drone 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: password:
from_secret: drone_secret from_secret: dockerhub_password
repo: code.pztrn.name/containers/rainloop repo: pztrn/rainloop
auto_tag: true 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 # Install necessary things
RUN apk add --no-cache \ RUN apk add --no-cache \
git \ git \
nginx \ nginx \
php8-curl \ php7-curl \
php8-dom \ php7-dom \
php8-fpm \ php7-fpm \
php8-iconv \ php7-iconv \
php8-json \ php7-json \
php8-openssl \ php7-openssl \
php8-pdo_mysql \ php7-pdo_mysql \
php8-pdo_pgsql \ php7-pdo_pgsql \
php8-pdo_sqlite \ php7-pdo_sqlite \
php8-xml \ php7-xml \
s6 \ s6 \
unzip \ unzip \
wget && \ 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. # Get rainloop.
RUN mkdir -p /var/www/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 ```shell
chown -R 100:101 /dir/with/data 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
```