diff --git a/FAQ---Frequently-Asked-Questions.md b/FAQ---Frequently-Asked-Questions.md index 3e9425d..93f8caf 100644 --- a/FAQ---Frequently-Asked-Questions.md +++ b/FAQ---Frequently-Asked-Questions.md @@ -4,6 +4,31 @@ Yes a docker image is provided by [passivelemmon](https://github.com/PassiveLemon), you can find more information in the [docker readme](https://github.com/tobychui/zoraxy/blob/main/docker/README.md)! +Here is an example docker-compose.yml: + +```yaml + +services: + zoraxy: + image: zoraxydocker/zoraxy:latest + container_name: zoraxy + restart: unless-stopped + + ports: + - 80:80 + - 443:443 + - 8005:8000/tcp + + volumes: + - ./config:/opt/zoraxy/config/ + - /var/run/docker.sock:/var/run/docker.sock + + environment: + noauth: false + docker: true + +``` + # Create a systemd-service for Zoraxy