2018-05-12 22:27:28 +00:00
|
|
|
postgres:
|
|
|
|
image: postgres:10.3
|
2015-03-28 19:27:56 +00:00
|
|
|
environment:
|
2018-05-12 22:27:28 +00:00
|
|
|
POSTGRES_USER: blog
|
|
|
|
POSTGRES_PASSWORD: blog
|
|
|
|
POSTGRES_DB: blog
|
2015-03-29 15:45:50 +00:00
|
|
|
ports:
|
|
|
|
- "3306"
|
2015-03-28 19:27:56 +00:00
|
|
|
blog:
|
|
|
|
build: .
|
|
|
|
links:
|
2018-05-12 22:27:28 +00:00
|
|
|
- postgres
|
2015-03-28 19:27:56 +00:00
|
|
|
ports:
|
|
|
|
- "8888:8888"
|
2018-05-12 22:27:28 +00:00
|
|
|
command: --db_host=postgres
|