Hi, I got problem with creating private IPFS network in docker. Me docker-compose file looks like this: ``` version: '3.4' services: ################################################################################## ## PEER 0 ######################################################################## ################################################################################## ipfs0: container_name: ipfs0 image: ipfs/go-ipfs:release ports: - "4001:4001" # ipfs swarm - expose if needed/wanted - "5001:5001" # ipfs api - expose if needed/wanted - "8080:8080" # ipfs gateway - expose if needed/wanted volumes: - /ipfs/ipfs0:/data/ipfs environment: LIBP2P_FORCE_PNET: 1 ################################################################################## ## PEER 1 ######################################################################## ################################################################################## ipfs1: container_name: ipfs1 image: ipfs/go-ipfs:release ports: - "5002:5001" # ipfs api - expose if needed/wanted volumes: - /ipfs/ipfs1:/data/ipfs environment: LIBP2P_FORCE_PNET: 1 ```