mirror of
https://github.com/openziti/zrok.git
synced 2024-11-25 01:23:49 +01:00
demonstrate adding public share containers to the compose project
This commit is contained in:
parent
c5530c4d0c
commit
21a53eec5b
@ -1,2 +1 @@
|
|||||||
.env
|
.env
|
||||||
*compose.override.yml
|
|
18
docker/compose/zrok-public-reserved/compose.override.yml
Normal file
18
docker/compose/zrok-public-reserved/compose.override.yml
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
services:
|
||||||
|
my-other-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
|
||||||
|
- ./Caddyfile:/Caddyfile
|
||||||
|
environment:
|
||||||
|
# most relevant options
|
||||||
|
ZROK_UNIQUE_NAME: "my-other-zrok-share"
|
||||||
|
ZROK_BACKEND_MODE: caddy
|
||||||
|
ZROK_TARGET: /Caddyfile
|
||||||
|
# internal configuration
|
||||||
|
STATE_DIRECTORY: /mnt # zrok homedir in container
|
2
docker/compose/zrok-public-share/.gitignore
vendored
2
docker/compose/zrok-public-share/.gitignore
vendored
@ -1,2 +0,0 @@
|
|||||||
.env
|
|
||||||
*compose.override.yml
|
|
@ -1,62 +0,0 @@
|
|||||||
services:
|
|
||||||
|
|
||||||
# set file ownership
|
|
||||||
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:
|
|
||||||
STATE_DIRECTORY: /mnt
|
|
||||||
ZROK_ENABLE_TOKEN:
|
|
||||||
ZROK_API_ENDPOINT:
|
|
||||||
ZROK_ENVIRONMENT_NAME: docker-public-share
|
|
||||||
|
|
||||||
# provision a temporary zrok frontend subdomain and start sharing the backend target
|
|
||||||
zrok-share:
|
|
||||||
image: ${ZROK_CONTAINER_IMAGE:-docker.io/openziti/zrok}
|
|
||||||
restart: no
|
|
||||||
entrypoint: zrok-share.bash
|
|
||||||
depends_on:
|
|
||||||
zrok-enable:
|
|
||||||
condition: service_completed_successfully
|
|
||||||
volumes:
|
|
||||||
- zrok_env:/mnt
|
|
||||||
environment:
|
|
||||||
# internal configuration
|
|
||||||
STATE_DIRECTORY: /mnt # zrok homedir in container
|
|
||||||
ZROK_FRONTEND_MODE: temp-public # tells zrok-share.bash to create a temporary subdomain and share until exit
|
|
||||||
|
|
||||||
# most relevant options
|
|
||||||
ZROK_BACKEND_MODE: proxy # web, caddy, drive, proxy
|
|
||||||
ZROK_TARGET: http://zrok-test:9090 # backend target, is a path in container filesystem unless proxy mode
|
|
||||||
ZROK_INSECURE: # "--insecure" if proxy target has unverifiable TLS server certificate
|
|
||||||
ZROK_OAUTH_PROVIDER: # google, github
|
|
||||||
ZROK_OAUTH_EMAILS: # allow space-separated list of OAuth email address glob patterns
|
|
||||||
ZROK_BASIC_AUTH: # username:password, mutually-exclusive with ZROK_OAUTH_PROVIDER
|
|
||||||
|
|
||||||
# least relevant options
|
|
||||||
ZROK_VERBOSE: # "--verbose"
|
|
||||||
ZROK_SHARE_OPTS: # additional arguments to "zrok share public" command
|
|
||||||
ZROK_FRONTENDS: # "public"
|
|
||||||
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:
|
|
Loading…
Reference in New Issue
Block a user