Access network in other docker container
问题 I have two docker containers. The first has an OpenVPN server where multiple clients are connected. Now I want to reach one of the clients through the VPN from the other container (for example with a simple ping command). Is that possible? At the moment I linked the containers this way: version: '3' services: app: build: context: . dockerfile: app.dockerfile links: - ovpn:ovpn ovpn: build: context: . dockerfile: ovpn.dockerfile working_dir: /etc/openvpn privileged: true volumes: - ./openvpn: