Created
April 25, 2018 00:09
-
-
Save jacksonpires/4eb71cd71a1b51fc55e926dddf777fa2 to your computer and use it in GitHub Desktop.
Docker-Compose usado no curso de Docker para desenvolvedores Javascript/Node.JS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
nodejs: | |
image: jacksonpires/app-node-dockerizado:latest | |
build: . | |
ports: | |
- 3090 | |
depends_on: | |
- db | |
db: | |
image: postgres | |
volumes: | |
- ./dados_postgres:/var/lib/postgresql/data | |
ports: | |
- 5432 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment