19 lines
484 B
YAML
19 lines
484 B
YAML
services:
|
|
zoraxy:
|
|
image: zoraxydocker/zoraxy:latest
|
|
container_name: zoraxy
|
|
restart: unless-stopped
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
- "8000:8000"
|
|
environment:
|
|
FASTGEOIP: "true"
|
|
TZ: "America/New_York"
|
|
volumes:
|
|
- ./config:/opt/zoraxy/config
|
|
- ./plugin:/opt/zoraxy/plugin
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- /etc/localtime:/etc/localtime:ro
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway" |