ironbar/services/gateway/compose.js
2018-09-02 07:25:51 -05:00

6 lines
133 B
JavaScript

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