mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-18 20:47:53 +00:00
more RELEASE-NOTES
This commit is contained in:
parent
8d21ae9813
commit
a9942ca412
28
Dockerfile.ci
Normal file
28
Dockerfile.ci
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
# vim: ft=dockerfile
|
||||||
|
|
||||||
|
FROM ubuntu:21.04 as stage
|
||||||
|
|
||||||
|
RUN apt-get update -qq && apt-get -qq install make clang
|
||||||
|
COPY . .
|
||||||
|
RUN /usr/bin/make
|
||||||
|
RUN echo $PWD
|
||||||
|
RUN cp zerotier-one /usr/sbin
|
||||||
|
|
||||||
|
FROM ubuntu:21.04
|
||||||
|
|
||||||
|
COPY --from=stage /zerotier-one /usr/sbin
|
||||||
|
RUN ln -sf /usr/sbin/zerotier-one /usr/sbin/zerotier-idtool
|
||||||
|
RUN ln -sf /usr/sbin/zerotier-one /usr/sbin/zerotier-cli
|
||||||
|
|
||||||
|
RUN echo "${VERSION}" > /etc/zerotier-version
|
||||||
|
RUN rm -rf /var/lib/zerotier-one
|
||||||
|
|
||||||
|
|
||||||
|
RUN apt-get -qq update
|
||||||
|
RUN apt-get -qq install iproute2 net-tools fping 2ping iputils-ping iputils-arping
|
||||||
|
|
||||||
|
COPY entrypoint.sh.release /entrypoint.sh
|
||||||
|
RUN chmod 755 /entrypoint.sh
|
||||||
|
|
||||||
|
CMD []
|
||||||
|
ENTRYPOINT ["/entrypoint.sh"]
|
@ -6,6 +6,10 @@ ZeroTier Release Notes
|
|||||||
* A *completely* rewritten desktop UI for Mac and Windows!
|
* A *completely* rewritten desktop UI for Mac and Windows!
|
||||||
* Implement a workaround for one potential source of a "coma" bug, which can occur if buggy NATs/routers stop allowing the service to communicate on a given port. ZeroTier now reassigns a new secondary port if it's offline for a while unless a secondary port is manually specified in local.conf.
|
* Implement a workaround for one potential source of a "coma" bug, which can occur if buggy NATs/routers stop allowing the service to communicate on a given port. ZeroTier now reassigns a new secondary port if it's offline for a while unless a secondary port is manually specified in local.conf.
|
||||||
* Fix for MacOS MTU issue on feth devices.
|
* Fix for MacOS MTU issue on feth devices.
|
||||||
|
* Fix for using v6 source addresses for v4 routes
|
||||||
|
* Stop binding to temporary IPv6 addresses
|
||||||
|
* Set MAC address before bringing up Linux TAP link
|
||||||
|
* Check if DNS servers need to be Applied on macOS
|
||||||
|
|
||||||
# 2021-04-13 -- Version 1.6.5
|
# 2021-04-13 -- Version 1.6.5
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user