mirror of https://github.com/lukechilds/umbrel.git
6 changed files with 62 additions and 1 deletions
@ -0,0 +1,26 @@ |
|||||
|
version: "3.7" |
||||
|
|
||||
|
services: |
||||
|
proxy: |
||||
|
image: getumbrel/snowflake:v2.1.0@sha256:875a513540a132752a4b09f5d6de4ed41399c5331265d6576dcfb5952bb22053 |
||||
|
restart: on-failure |
||||
|
stop_grace_period: 1m |
||||
|
command: "-log /data/snowflake.log -verbose" |
||||
|
volumes: |
||||
|
- ${APP_DATA_DIR}/data:/data |
||||
|
networks: |
||||
|
default: |
||||
|
ipv4_address: $APP_SNOWFLAKE_PROXY_IP |
||||
|
|
||||
|
web: |
||||
|
image: getumbrel/gotty:v1.0.1@sha256:100571d271cfbae25603acac216afce511eece9961218c6db427e0fa4a58716a |
||||
|
restart: on-failure |
||||
|
stop_grace_period: 1m |
||||
|
ports: |
||||
|
- $APP_SNOWFLAKE_PORT:$APP_SNOWFLAKE_PORT |
||||
|
command: --port $APP_SNOWFLAKE_PORT bash -c 'tail -n 10000 -f /snowflake/snowflake.log | grep "Traffic Relayed"' |
||||
|
volumes: |
||||
|
- ${APP_DATA_DIR}/data:/snowflake |
||||
|
networks: |
||||
|
default: |
||||
|
ipv4_address: $APP_SNOWFLAKE_IP |
Loading…
Reference in new issue