mirror of https://github.com/docker/compose.git
15 lines
234 B
YAML
15 lines
234 B
YAML
|
services:
|
||
|
db:
|
||
|
build: db
|
||
|
image: gtardif/sentences-db
|
||
|
|
||
|
words:
|
||
|
build: words
|
||
|
image: gtardif/sentences-api
|
||
|
ports:
|
||
|
- "8080:8080"
|
||
|
web:
|
||
|
build: web
|
||
|
image: gtardif/sentences-web
|
||
|
ports:
|
||
|
- "80:80"
|