mirror of
https://github.com/gravitl/netmaker.git
synced 2025-09-11 07:34:31 +08:00
updating readme
This commit is contained in:
parent
8197728cad
commit
e6fd9ffa4e
4 changed files with 13 additions and 12 deletions
|
@ -21,8 +21,8 @@ a platform for modern, blazing fast virtual networks
|
|||
<a href="https://github.com/gravitl/netmaker/graphs/contributors">
|
||||
<img src="https://img.shields.io/github/commit-activity/m/gravitl/netmaker?color=blue" />
|
||||
</a>
|
||||
<a href="https://twitter.com/intent/follow?screen_name=gravitlcorp">
|
||||
<img src="https://img.shields.io/twitter/follow/gravitlcorp?style=social" />
|
||||
<a href="https://twitter.com/intent/follow?screen_name=netmaker_io">
|
||||
<img src="https://img.shields.io/twitter/follow/netmaker_io?style=social" />
|
||||
</a>
|
||||
<a href="https://www.youtube.com/channel/UCach3lJY_xBV7rGrbUSvkZQ">
|
||||
<img src="https://img.shields.io/youtube/channel/views/UCach3lJY_xBV7rGrbUSvkZQ?style=social" />
|
||||
|
@ -48,7 +48,7 @@ a platform for modern, blazing fast virtual networks
|
|||
|
||||
`wget -qO - https://raw.githubusercontent.com/gravitl/netmaker/master/scripts/nm-quick.sh | sudo bash`
|
||||
|
||||
<img src="./img/visit-website.gif" width="50%" /><img src="./img/graph-readme.gif" width="50%" />
|
||||
<img src="./img/visit-website.gif" width="49%" /><img src="./img/graph-readme.gif" width="49%" />
|
||||
|
||||
Upon completion, the logs will display the instructions to connect various devices. These can also be retrieved from the UI under "Access Keys."
|
||||
|
||||
|
@ -106,6 +106,9 @@ After installing Netmaker, check out the [Walkthrough](https://itnext.io/getting
|
|||
|
||||
- [Terraform Provider](https://github.com/madacluster/netmaker-terraform-provider)
|
||||
|
||||
- [VyOS Integration](https://github.com/kylechase/vyos-netmaker)
|
||||
|
||||
- [Netmaker K3S](https://github.com/geragcp/netmaker-k3s)
|
||||
|
||||
## Disclaimer
|
||||
[WireGuard](https://wireguard.com/) is a registered trademark of Jason A. Donenfeld.
|
||||
|
|
|
@ -3,7 +3,7 @@ version: "3.4"
|
|||
services:
|
||||
netmaker:
|
||||
container_name: netmaker
|
||||
image: gravitl/netmaker:v0.13.1
|
||||
image: gravitl/netmaker:v0.14.1
|
||||
volumes:
|
||||
- dnsconfig:/root/config/dnsconfig
|
||||
- /usr/bin/wg:/usr/bin/wg
|
||||
|
@ -38,7 +38,7 @@ services:
|
|||
container_name: netmaker-ui
|
||||
depends_on:
|
||||
- netmaker
|
||||
image: gravitl/netmaker-ui:v0.13.1
|
||||
image: gravitl/netmaker-ui:v0.14.1
|
||||
links:
|
||||
- "netmaker:api"
|
||||
ports:
|
||||
|
|
|
@ -45,7 +45,7 @@ services:
|
|||
container_name: netmaker-ui
|
||||
depends_on:
|
||||
- netmaker
|
||||
image: gravitl/netmaker-ui:v0.13.1
|
||||
image: gravitl/netmaker-ui:v0.14.1
|
||||
links:
|
||||
- "netmaker:api"
|
||||
ports:
|
||||
|
|
|
@ -35,11 +35,10 @@ services:
|
|||
MQ_HOST: "mq"
|
||||
HOST_NETWORK: "off"
|
||||
VERBOSITY: "1"
|
||||
PORT_FORWARD_SERVICES: "dns"
|
||||
MANAGE_IPTABLES: "on"
|
||||
PORT_FORWARD_SERVICES: "dns"
|
||||
ports:
|
||||
- "51821-51830:51821-51830/udp"
|
||||
- "8081:8081"
|
||||
netmaker-ui:
|
||||
container_name: netmaker-ui
|
||||
depends_on:
|
||||
|
@ -47,8 +46,6 @@ services:
|
|||
image: gravitl/netmaker-ui:v0.14.1
|
||||
links:
|
||||
- "netmaker:api"
|
||||
ports:
|
||||
- "8082:80"
|
||||
environment:
|
||||
BACKEND_URL: "https://api.NETMAKER_BASE_DOMAIN"
|
||||
restart: always
|
||||
|
@ -65,7 +62,9 @@ services:
|
|||
image: caddy:latest
|
||||
container_name: caddy
|
||||
restart: unless-stopped
|
||||
network_mode: host # Wants ports 80 and 443!
|
||||
ports:
|
||||
- "80:80"
|
||||
- "443:443"
|
||||
volumes:
|
||||
- /root/Caddyfile:/etc/caddy/Caddyfile
|
||||
# - $PWD/site:/srv # you could also serve a static site in site folder
|
||||
|
@ -78,7 +77,6 @@ services:
|
|||
container_name: mq
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "127.0.0.1:1883:1883"
|
||||
- "8883:8883"
|
||||
volumes:
|
||||
- /root/mosquitto.conf:/mosquitto/config/mosquitto.conf
|
||||
|
|
Loading…
Add table
Reference in a new issue