Skip to content

Commit a9942ca

Browse files
committed
more RELEASE-NOTES
1 parent 8d21ae9 commit a9942ca

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

Dockerfile.ci

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# vim: ft=dockerfile
2+
3+
FROM ubuntu:21.04 as stage
4+
5+
RUN apt-get update -qq && apt-get -qq install make clang
6+
COPY . .
7+
RUN /usr/bin/make
8+
RUN echo $PWD
9+
RUN cp zerotier-one /usr/sbin
10+
11+
FROM ubuntu:21.04
12+
13+
COPY --from=stage /zerotier-one /usr/sbin
14+
RUN ln -sf /usr/sbin/zerotier-one /usr/sbin/zerotier-idtool
15+
RUN ln -sf /usr/sbin/zerotier-one /usr/sbin/zerotier-cli
16+
17+
RUN echo "${VERSION}" > /etc/zerotier-version
18+
RUN rm -rf /var/lib/zerotier-one
19+
20+
21+
RUN apt-get -qq update
22+
RUN apt-get -qq install iproute2 net-tools fping 2ping iputils-ping iputils-arping
23+
24+
COPY entrypoint.sh.release /entrypoint.sh
25+
RUN chmod 755 /entrypoint.sh
26+
27+
CMD []
28+
ENTRYPOINT ["/entrypoint.sh"]

RELEASE-NOTES.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ ZeroTier Release Notes
66
* A *completely* rewritten desktop UI for Mac and Windows!
77
* 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.
88
* Fix for MacOS MTU issue on feth devices.
9+
* Fix for using v6 source addresses for v4 routes
10+
* Stop binding to temporary IPv6 addresses
11+
* Set MAC address before bringing up Linux TAP link
12+
* Check if DNS servers need to be Applied on macOS
913

1014
# 2021-04-13 -- Version 1.6.5
1115

0 commit comments

Comments
 (0)