-
Notifications
You must be signed in to change notification settings - Fork 286
add cloudflare warp #632
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add cloudflare warp #632
Changes from 7 commits
a60c389
fb24173
d269939
aaaa833
8912302
d0aa961
db41f1d
a6d1b92
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| services: | ||
| cloudflare-warp-proxy: | ||
| image: ghcr.io/seiry/cloudflare-warp-proxy:latest | ||
| restart: unless-stopped | ||
| # `LICENSE` is injected by the Dokploy template (`template.toml` [config.env]). | ||
| logging: | ||
| driver: json-file | ||
| options: | ||
| max-size: 1m | ||
| volumes: | ||
| - /run/dbus/system_bus_socket:/run/dbus/system_bus_socket:ro | ||
|
||
| security_opt: | ||
| - apparmor:unconfined | ||
| # If AppArmor unconfined is insufficient on some hosts, uncomment the next line | ||
| # to run the container in privileged mode (less secure): | ||
| # privileged: true | ||
|
Comment on lines
+1
to
+16
|
||
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,12 @@ | ||||||||||||||
| [variables] | ||||||||||||||
| warp_key = "<INSERT TOKEN>" | ||||||||||||||
|
|
||||||||||||||
| [config] | ||||||||||||||
| domains = [] | ||||||||||||||
|
|
||||||||||||||
| [config.env] | ||||||||||||||
| LICENSE = "${warp_key}" | ||||||||||||||
nxyystore marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||||||||||||||
|
|
||||||||||||||
| [[config.mounts]] | ||||||||||||||
| filePath = "/run/dbus/system_bus_socket" | ||||||||||||||
| content = "" | ||||||||||||||
|
Comment on lines
+10
to
+12
|
||||||||||||||
| LICENSE = "${warp_key}" | |
| [[config.mounts]] | |
| filePath = "/run/dbus/system_bus_socket" | |
| content = "" | |
| LICENSE = "${warp_key}" |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1305,8 +1305,8 @@ | |
| "logo": "cloudflared.svg", | ||
| "links": { | ||
| "github": "https://github.com/cloudflare/cloudflared", | ||
| "website": "https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/", | ||
| "docs": "https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/install-and-setup/" | ||
| "website": "https://developers.cloudflare.com/cloudflare-one/networks/connectors/cloudflare-tunnel/", | ||
| "docs": "https://developers.cloudflare.com/cloudflare-one/networks/connectors/cloudflare-tunnel/get-started/" | ||
|
Comment on lines
+1308
to
+1309
|
||
| }, | ||
| "tags": [ | ||
| "cloud", | ||
|
|
@@ -6031,6 +6031,23 @@ | |
| "self-hosted" | ||
| ] | ||
| }, | ||
| { | ||
| "id": "warp", | ||
| "name": "Cloudflare WARP", | ||
| "version": "latest", | ||
|
||
| "description": "Cloudflare WARP Connector (beta) is a software client that enables site-to-site, bidirectional, and mesh networking connectivity without requiring changes to underlying network routing infrastructure.", | ||
| "logo": "warp.svg", | ||
| "links": { | ||
| "github": "https://github.com/seiry/docker-warp-proxy", | ||
|
||
| "website": "https://developers.cloudflare.com/cloudflare-one/networks/connectors/cloudflare-tunnel/private-net/", | ||
| "docs": "https://developers.cloudflare.com/cloudflare-one/networks/connectors/cloudflare-tunnel/private-net/warp-connector/" | ||
| }, | ||
| "tags": [ | ||
| "proxy", | ||
| "networking", | ||
| "tunnel" | ||
| ] | ||
| }, | ||
| { | ||
| "id": "web-check", | ||
| "name": "Web-Check", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The service name 'cloudflare-warp-proxy' doesn't follow the typical convention where service names match the blueprint folder name. The folder is named 'warp', so the service should ideally be named 'warp' for consistency. This makes templates more predictable and easier to maintain.