diff --git a/tinyproxy/Dockerfile b/tinyproxy/Dockerfile index d5f01b5..a25950a 100644 --- a/tinyproxy/Dockerfile +++ b/tinyproxy/Dockerfile @@ -2,8 +2,8 @@ # Dockerfile for tinyproxy # -FROM alpine -MAINTAINER kev +FROM alpine:3 +MAINTAINER EasyPi Software Foundation RUN set -xe \ && apk add --no-cache tinyproxy \ diff --git a/tinyproxy/README.md b/tinyproxy/README.md index 7efb5fd..4e2ca2d 100644 --- a/tinyproxy/README.md +++ b/tinyproxy/README.md @@ -6,13 +6,15 @@ tinyproxy ## docker-compose.yml ```yaml -tinyproxy: - image: vimagick/tinyproxy - ports: - - "8888:8888" - volumes: - - ./data:/etc/tinyproxy - restart: unless-stopped +version: "3.8" +services: + tinyproxy: + image: vimagick/tinyproxy + ports: + - "8888:8888" + volumes: + - ./data:/etc/tinyproxy + restart: unless-stopped ``` ## Server Setup diff --git a/tinyproxy/data/tinyproxy.conf b/tinyproxy/data/tinyproxy.conf index 166a382..6f722bd 100644 --- a/tinyproxy/data/tinyproxy.conf +++ b/tinyproxy/data/tinyproxy.conf @@ -13,7 +13,7 @@ # number may be used. # User nobody -Group nobody +Group nogroup # # Port: Specify the port which tinyproxy will listen on. Please note @@ -187,7 +187,7 @@ LogLevel Info # be created. In other words, only MaxClients number of clients can be # connected at the same time. # -MaxClients 100 +MaxClients 1024 # # Allow: Customization of authorization controls. If there are any diff --git a/tinyproxy/docker-compose.yml b/tinyproxy/docker-compose.yml index c46eba6..2c7106b 100644 --- a/tinyproxy/docker-compose.yml +++ b/tinyproxy/docker-compose.yml @@ -1,7 +1,9 @@ -tinyproxy: - image: vimagick/tinyproxy - ports: - - "8888:8888" - volumes: - - ./data:/etc/tinyproxy - restart: unless-stopped +version: "3.8" +services: + tinyproxy: + image: vimagick/tinyproxy + ports: + - "8888:8888" + volumes: + - ./data:/etc/tinyproxy + restart: unless-stopped