1
0
mirror of https://github.com/docker/awesome-compose.git synced 2025-07-01 18:12:55 +00:00
awesome-compose/react-express-mysql/backend/src/config.js
Jérémie Drouet 75aa52524c react-express-mysql: split backend code
Signed-off-by: Jérémie Drouet <jeremie.drouet@gmail.com>
2020-03-23 14:18:50 +01:00

8 lines
294 B
JavaScript

// Constants
module.exports = {
port: process.env.PORT || 8080
// if you're not using docker-compose for local development, this will default to 8080
// to prevent non-root permission problems with 80. Dockerfile is set to make this 80
// because containers don't have that issue :)
};