1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00

upgrade rinetd to 0.73

This commit is contained in:
kev 2023-03-17 11:47:02 +08:00
parent f041b45bf9
commit 223b2dbebb
3 changed files with 20 additions and 16 deletions

@ -2,11 +2,11 @@
# Dockerfile for rinetd # Dockerfile for rinetd
# #
FROM alpine FROM alpine:3
MAINTAINER kev <noreply@easypi.pro> MAINTAINER EasyPi Software Foundation
ENV RINETD_VERSION 0.70 ARG RINETD_VERSION=0.73
ENV RINETD_URL https://github.com/samhocevar/rinetd/releases/download/v${RINETD_VERSION}/rinetd-${RINETD_VERSION}.tar.gz ARG RINETD_URL=https://github.com/samhocevar/rinetd/releases/download/v${RINETD_VERSION}/rinetd-${RINETD_VERSION}.tar.gz
RUN set -xe \ RUN set -xe \
&& apk add --no-cache build-base curl tar \ && apk add --no-cache build-base curl tar \

@ -8,12 +8,14 @@ servers, firewalls and the like.
## docker-compose.yml ## docker-compose.yml
```yaml ```yaml
rinetd: version: "3.8"
image: vimagick/rinetd services:
volumes: rinetd:
- ./data:/etc/rinetd image: vimagick/rinetd
net: host volumes:
restart: always - ./data:/etc/rinetd
network_mode: host
restart: unless-stopped
``` ```
## up and running ## up and running

@ -1,6 +1,8 @@
rinetd: version: "3.8"
image: vimagick/rinetd services:
volumes: rinetd:
- ./data:/etc/rinetd image: vimagick/rinetd
net: host volumes:
restart: always - ./data:/etc/rinetd
network_mode: host
restart: unless-stopped