mirror of
https://github.com/openziti/zrok.git
synced 2024-11-24 17:13:51 +01:00
60 lines
2.0 KiB
YAML
60 lines
2.0 KiB
YAML
services:
|
|
zrok-init:
|
|
image: busybox
|
|
# matches uid:gid of "ziggy" in zrok container image
|
|
command: chown -Rc 2171:2171 /mnt/.zrok
|
|
user: root
|
|
volumes:
|
|
- zrok_env:/mnt/.zrok
|
|
|
|
# enable zrok environment
|
|
zrok-enable:
|
|
image: ${ZROK_CONTAINER_IMAGE:-docker.io/openziti/zrok}
|
|
depends_on:
|
|
zrok-init:
|
|
condition: service_completed_successfully
|
|
entrypoint: zrok-enable.bash
|
|
volumes:
|
|
- zrok_env:/mnt
|
|
environment:
|
|
HOME: /mnt
|
|
ZROK_ENABLE_TOKEN:
|
|
ZROK_API_ENDPOINT:
|
|
ZROK_ENVIRONMENT_NAME: docker-private-share
|
|
|
|
zrok-share:
|
|
image: ${ZROK_CONTAINER_IMAGE:-docker.io/openziti/zrok}
|
|
restart: unless-stopped
|
|
entrypoint: zrok-share.bash
|
|
depends_on:
|
|
zrok-enable:
|
|
condition: service_completed_successfully
|
|
volumes:
|
|
- zrok_env:/mnt
|
|
environment:
|
|
# internal configuration
|
|
HOME: /mnt # zrok homedir in container
|
|
|
|
# most relevant options
|
|
ZROK_UNIQUE_NAME: # name is used to construct frontend domain name, e.g. "myapp" in "myapp.share.zrok.io"
|
|
ZROK_BACKEND_MODE: # web, caddy, drive, proxy
|
|
ZROK_TARGET: # backend target, is a path in container filesystem unless proxy mode
|
|
ZROK_INSECURE: # "--insecure" if proxy target has unverifiable TLS server certificate
|
|
ZROK_BASIC_AUTH: # username:password
|
|
ZROK_PERMISSION_MODE: # if "closed" allow only your account and additional accounts in ZROK_ACCESS_GRANTS
|
|
ZROK_ACCESS_GRANTS: # space-separated list of additional zrok account emails to grant access in closed permission mode
|
|
|
|
# least relevant options
|
|
ZROK_VERBOSE: # "--verbose"
|
|
ZROK_SHARE_OPTS: # additional arguments to "zrok reserve private" command
|
|
ZROK_FRONTEND_MODE: reserved-private
|
|
PFXLOG_NO_JSON: "true" # suppress JSON logging format
|
|
|
|
# demo server you can share with zrok
|
|
zrok-test:
|
|
image: ${ZROK_CONTAINER_IMAGE:-docker.io/openziti/zrok}
|
|
command: test endpoint --address 0.0.0.0 # 9090
|
|
|
|
volumes:
|
|
zrok_env:
|