diff --git a/Zoraxy-in-Docker-with-Portainer-and-Nginx-as-examples.md b/Zoraxy-in-Docker-with-Portainer-and-Nginx-as-examples.md index b847875..27460fa 100644 --- a/Zoraxy-in-Docker-with-Portainer-and-Nginx-as-examples.md +++ b/Zoraxy-in-Docker-with-Portainer-and-Nginx-as-examples.md @@ -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: