Viewing the graph
match (n:MyNode)-[r]->(m)
return n, r, m
Finding paths between specific nodes:*
Viewing the graph
match (n:MyNode)-[r]->(m)
return n, r, m
Finding paths between specific nodes:*
We need a global docker network in order to communicate between docker-compose setups on different hosts
Actually, it's a guide to setup docker macvlan network and it can be used to attach static ip to container on public/local network.
docker network create -d macvlan --subnet=$SUBNET --gateway=$GATEWAY_IP -o parent=eth0 public
Where:
$SUBNET - your public network subnet
$GATEWAY_IP - your public network gateway
This will create a proxy server in whatever your availability zone your VPC is in. For me, that's us-east-1b
. For you, that may be something different. Steps 10+ should more or less work regardless of your provider since those steps cover the setup and configuration of TinyProxy.
Platform: Ubuntu 16.04
free -m
Which outputs like:
total used free shared buff/cache available
sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"