e5330d678f
* Expose port 80 for the christmas-community service If the app is ran with docker-compose, the express server (port 80) should be open as well * Change default ports to 3000 and 8080 for Express and DB respectively Also modified the initial config to include a default DB port if not provided in the env * Forward only port 80 and don't expose database by default in the config file Database is still being exposed through the Dockerfile, as it already was * Restore formatting for config/index.js
10 lines
No EOL
161 B
YAML
10 lines
No EOL
161 B
YAML
version: '2.1'
|
|
|
|
services:
|
|
christmas-community:
|
|
image: christmas-community
|
|
build: .
|
|
environment:
|
|
NODE_ENV: production
|
|
ports:
|
|
- 80:80 |