14 changed files with 3841 additions and 61 deletions
@ -1,19 +1,26 @@
|
||||
# Dockerfile for ZeroTier Central Controllers |
||||
FROM centos:7 |
||||
FROM centos:7 as builder |
||||
MAINTAINER Adam Ierymekno <adam.ierymenko@zerotier.com>, Grant Limberg <grant.limberg@zerotier.com> |
||||
|
||||
ARG git_branch=master |
||||
|
||||
RUN yum update -y |
||||
RUN yum install -y https://download.postgresql.org/pub/repos/yum/10/redhat/rhel-7-x86_64/pgdg-centos10-10-2.noarch.rpm |
||||
RUN yum install -y bash postgresql10 libpqxx-devel |
||||
|
||||
RUN yum -y install epel-release && yum -y update && yum clean all |
||||
RUN yum -y install clang jemalloc jemalloc-devel |
||||
RUN yum groupinstall -y "Development Tools" |
||||
RUN yum install -y bash postgresql10 postgresql10-devel libpqxx-devel glibc-static libstdc++-static clang jemalloc jemalloc-devel |
||||
|
||||
RUN git clone http://git.int.zerotier.com/zerotier/ZeroTierOne.git |
||||
RUN if [ "$git_branch" != "master" ]; then cd ZeroTierOne && git checkout -b $git_branch origin/$git_branch; fi |
||||
RUN ldconfig |
||||
RUN cd ZeroTierOne && make central-controller |
||||
|
||||
FROM centos:7 |
||||
|
||||
ADD zerotier-one /usr/local/bin/zerotier-one |
||||
COPY --from=builder /ZeroTierOne/zerotier-one /usr/local/bin/zerotier-one |
||||
RUN chmod a+x /usr/local/bin/zerotier-one |
||||
|
||||
ADD docker/main.sh / |
||||
ADD ext/central-controller-docker/main.sh / |
||||
RUN chmod a+x /main.sh |
||||
|
||||
ENTRYPOINT /main.sh |
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,68 @@
|
||||
/** \file */ |
||||
/*
|
||||
* Portions created by Alan Antonuk are Copyright (c) 2013-2014 Alan Antonuk. |
||||
* All Rights Reserved. |
||||
* |
||||
* Portions created by Michael Steinert are Copyright (c) 2012-2013 Michael |
||||
* Steinert. All Rights Reserved. |
||||
* |
||||
* Permission is hereby granted, free of charge, to any person obtaining a |
||||
* copy of this software and associated documentation files (the "Software"), |
||||
* to deal in the Software without restriction, including without limitation |
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense, |
||||
* and/or sell copies of the Software, and to permit persons to whom the |
||||
* Software is furnished to do so, subject to the following conditions: |
||||
* |
||||
* The above copyright notice and this permission notice shall be included in |
||||
* all copies or substantial portions of the Software. |
||||
* |
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
||||
* DEALINGS IN THE SOFTWARE. |
||||
*/ |
||||
|
||||
/**
|
||||
* A TCP socket connection. |
||||
*/ |
||||
|
||||
#ifndef AMQP_TCP_SOCKET_H |
||||
#define AMQP_TCP_SOCKET_H |
||||
|
||||
#include <amqp.h> |
||||
|
||||
AMQP_BEGIN_DECLS |
||||
|
||||
/**
|
||||
* Create a new TCP socket. |
||||
* |
||||
* Call amqp_connection_close() to release socket resources. |
||||
* |
||||
* \return A new socket object or NULL if an error occurred. |
||||
* |
||||
* \since v0.4.0 |
||||
*/ |
||||
AMQP_PUBLIC_FUNCTION |
||||
amqp_socket_t *AMQP_CALL amqp_tcp_socket_new(amqp_connection_state_t state); |
||||
|
||||
/**
|
||||
* Assign an open file descriptor to a socket object. |
||||
* |
||||
* This function must not be used in conjunction with amqp_socket_open(), i.e. |
||||
* the socket connection should already be open(2) when this function is |
||||
* called. |
||||
* |
||||
* \param [in,out] self A TCP socket object. |
||||
* \param [in] sockfd An open socket descriptor. |
||||
* |
||||
* \since v0.4.0 |
||||
*/ |
||||
AMQP_PUBLIC_FUNCTION |
||||
void AMQP_CALL amqp_tcp_socket_set_sockfd(amqp_socket_t *self, int sockfd); |
||||
|
||||
AMQP_END_DECLS |
||||
|
||||
#endif /* AMQP_TCP_SOCKET_H */ |
||||
Binary file not shown.
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> |
||||
<plist version="1.0"> |
||||
<dict> |
||||
<key>IDEDidComputeMac32BitWarning</key> |
||||
<true/> |
||||
</dict> |
||||
</plist> |
||||
Loading…
Reference in new issue