Ubuntu – Connect to localhost between containers?
I have 2 simple node.js apps app1/index.js import fetch from 'node-fetch'; import express from 'express' const app = express() const port = 3000 app.get('/', (req, res) => { fetch("http://localhost:3002/", { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ "msg":…