ironbar/services/gateway/compose.js

5 lines
132 B
JavaScript

module.exports = (config) => {
const gatewayPort = process.env.GATEWAY_PORT || 8000;
config.ports = [`${gatewayPort}:8000`];
};