2023-02-15 20:04:26 +01:00
|
|
|
services:
|
2023-10-20 19:46:36 +02:00
|
|
|
zrok-init:
|
2023-02-15 23:41:46 +01:00
|
|
|
image: busybox
|
2024-05-19 00:51:24 +02:00
|
|
|
# matches uid:gid of "ziggy" in zrok container image
|
|
|
|
command: chown -Rc 2171:2171 /mnt/.zrok
|
2023-02-15 23:41:46 +01:00
|
|
|
user: root
|
|
|
|
volumes:
|
|
|
|
- zrok_env:/mnt/.zrok
|
2023-10-20 19:46:36 +02:00
|
|
|
|
2023-11-28 03:12:38 +01:00
|
|
|
# enable zrok environment
|
2023-02-15 23:41:46 +01:00
|
|
|
zrok-enable:
|
2023-10-20 19:46:36 +02:00
|
|
|
image: ${ZROK_CONTAINER_IMAGE:-docker.io/openziti/zrok}
|
2023-02-15 23:41:46 +01:00
|
|
|
depends_on:
|
2023-10-20 19:46:36 +02:00
|
|
|
zrok-init:
|
2023-02-15 23:41:46 +01:00
|
|
|
condition: service_completed_successfully
|
2023-11-28 03:12:38 +01:00
|
|
|
entrypoint: zrok-enable.bash
|
2023-02-15 23:41:46 +01:00
|
|
|
volumes:
|
2023-11-28 03:12:38 +01:00
|
|
|
- zrok_env:/mnt
|
2023-02-15 23:41:46 +01:00
|
|
|
environment:
|
2023-11-28 03:12:38 +01:00
|
|
|
STATE_DIRECTORY: /mnt
|
|
|
|
ZROK_ENABLE_TOKEN:
|
|
|
|
ZROK_API_ENDPOINT:
|
|
|
|
ZROK_ENVIRONMENT_NAME: docker-private-access
|
2023-10-20 19:46:36 +02:00
|
|
|
|
|
|
|
zrok-access:
|
|
|
|
image: ${ZROK_CONTAINER_IMAGE:-docker.io/openziti/zrok}
|
2023-11-30 23:00:59 +01:00
|
|
|
restart: unless-stopped
|
2023-02-22 03:28:02 +01:00
|
|
|
command: access private --headless --bind 0.0.0.0:9191 ${ZROK_ACCESS_TOKEN}
|
2023-02-15 23:41:46 +01:00
|
|
|
depends_on:
|
|
|
|
zrok-enable:
|
|
|
|
condition: service_completed_successfully
|
2023-02-15 20:04:26 +01:00
|
|
|
ports:
|
2023-02-15 23:41:46 +01:00
|
|
|
- 9191:9191 # expose the zrok private access proxy to the Docker host
|
2023-02-15 20:04:26 +01:00
|
|
|
volumes:
|
2023-11-28 03:12:38 +01:00
|
|
|
- zrok_env:/mnt
|
2023-02-15 20:04:26 +01:00
|
|
|
environment:
|
|
|
|
HOME: /mnt
|
|
|
|
PFXLOG_NO_JSON: "true"
|
2023-02-15 23:41:46 +01:00
|
|
|
|
|
|
|
# alternatively, access the zrok private access proxy from another container
|
|
|
|
demo-client:
|
|
|
|
depends_on:
|
2023-10-20 19:46:36 +02:00
|
|
|
- zrok-access
|
2023-02-15 20:04:26 +01:00
|
|
|
image: busybox
|
2023-02-15 23:41:46 +01:00
|
|
|
entrypoint:
|
|
|
|
- sh
|
|
|
|
- -c
|
|
|
|
- |
|
|
|
|
while true; do
|
|
|
|
echo 'INFO: trying wget';
|
2023-10-20 19:46:36 +02:00
|
|
|
wget -q -O - http://zrok-access:9191/ip;
|
2023-02-15 23:41:46 +01:00
|
|
|
sleep 3;
|
|
|
|
done
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
zrok_env:
|