Revert "Switch to alpine"
continuous-integration/drone/push Build was killed Details

This reverts commit b998b9bc3f.
master
Simon Bruder 2020-07-12 22:37:03 +02:00
parent a6afcb648e
commit 43e76d4d3a
No known key found for this signature in database
GPG Key ID: 6F03E0000CC5B62F
6 changed files with 15 additions and 13 deletions

View File

@ -1,13 +1,15 @@
FROM alpine:edge
FROM debian:testing-slim
RUN echo http://dl-cdn.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories \
&& apk add --no-cache \
deluge \
RUN apt-get update \
&& apt-get -y install --no-install-recommends runit \
&& apt-get -y install \
deluge-console \
deluge-web \
deluged \
git \
nginx \
py3-pip \
runit \
su-exec \
gosu \
nginx-light \
python3-pip \
tini
RUN git clone --depth=1 https://github.com/tobbez/deluge_exporter /opt/deluge_exporter \

View File

@ -1,5 +1,5 @@
#!/bin/sh
set -u
adduser -D -u $PUID deluge
adduser -q --gecos '' --disabled-password --uid $PUID deluge
chown deluge:deluge /download/ /config/
exec tini -- runsvdir /etc/service/

View File

@ -1,5 +1,5 @@
# vim: set et sts=4 sw=4 ts=4:
user nginx;
user www-data;
worker_processes auto;
pid /run/nginx.pid;

View File

@ -1,2 +1,2 @@
#!/bin/sh
su-exec deluge deluge-web -d -c /config
gosu deluge deluge-web -d -c /config

View File

@ -1,2 +1,2 @@
#!/bin/sh
DELUGE_CONFIG_DIR=/config/ su-exec deluge /opt/deluge_exporter/deluge_exporter.py
DELUGE_CONFIG_DIR=/config/ gosu deluge /opt/deluge_exporter/deluge_exporter.py

View File

@ -1,2 +1,2 @@
#!/bin/sh
su-exec deluge deluged -d -c /config -L warning
gosu deluge deluged -d -c /config -L warning