Displaying 1 result from an estimated 1 matches for "acltoken".
Did you mean:
aaltonen
2016 Dec 29
0
Allow direct connection between some (but not all) nodes on the network (Guus Sliepen)
...quot;
where consul.example.com is your public domain or subdomain
it is only tested in ubuntu 16.04, but you can run in any os with docker
1.12 support
this is what the script really does
if [ "${master:-false}" == "true" ];then
hostnamectl set-hostname master1
export ACLToken=$(uuidgen)
mkdir -p /consul
mkdit -p /caddy
chmod 755 -R /consul
chmod 755 -R /caddy
docker run -d --env ACLToken=${ACLToken:?} --env
ConsulHost=${ConsulHost:?} \
--env master=true --net=host --device=/dev/net/tun --cap-add NET_ADMIN \
--volume /consul:/consul --volume...