Updated Zoraxy in Docker with Portainer and Nginx as examples (markdown)

Marcel 2024-06-20 08:59:33 +02:00
parent 1581778d03
commit 2212a1fb79

@ -27,22 +27,28 @@ Now we create a config-folder and a docker-compose.yml
Put in these lines:
```
```yaml
services:
zoraxy:
image: zoraxydocker/zoraxy:latest
container_name: zoraxy
restart: unless-stopped
ports:
- 80:80
- 443:443
- 8005:8000/tcp
networks:
zoraxynet:
volumes:
- ./config:/opt/zoraxy/config/
environment:
ARGS: '-noauth=false'
volumes:
- ./config:/opt/zoraxy/config/
- /var/run/docker.sock:/var/run/docker.sock
environment:
noauth: false
docker: true
networks:
zoraxynet:
networks:
zoraxynet: