Switch to alpine
continuous-integration/drone/push Build is passing Details

master
Simon Bruder 2020-07-09 20:24:28 +02:00
parent 917060c091
commit b998b9bc3f
No known key found for this signature in database
GPG Key ID: 6F03E0000CC5B62F
6 changed files with 15 additions and 15 deletions

View File

@ -1,15 +1,13 @@
FROM debian:testing-slim
FROM alpine:edge
RUN apt-get update \
&& apt-get -y install --no-install-recommends runit \
&& apt-get -y install \
deluge-console \
deluge-web \
deluged \
RUN echo http://dl-cdn.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories \
&& apk add --no-cache \
deluge \
git \
gosu \
nginx-light \
python3-pip \
nginx \
py3-pip \
runit \
su-exec \
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 -q --gecos '' --disabled-password --uid $PUID deluge
adduser -D -u $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 www-data;
user nginx;
worker_processes auto;
pid /run/nginx.pid;
@ -20,6 +20,8 @@ http {
default_type application/octet-stream;
client_max_body_size 32M;
client_body_buffer_size 32M;
proxy_max_temp_file_size 0;
server {
listen unix:/var/run/nginx.sock;

View File

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

View File

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

View File

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