Files
robot-shop/payment/docker-compose.yaml

16 lines
260 B
YAML
Raw Permalink Normal View History

2018-01-26 16:01:39 +00:00
version: '3'
services:
rabbitmq:
2018-01-29 17:40:12 +00:00
image: rabbitmq:3.7-management-alpine
2018-01-26 16:01:39 +00:00
ports:
- "5672"
2018-01-29 17:40:12 +00:00
- "15672:15672"
2018-01-26 16:01:39 +00:00
payment:
build:
context: .
2018-03-14 10:46:24 +00:00
image: robotshop/rs-payment
2018-01-26 16:01:39 +00:00
depends_on:
- rabbitmq
ports:
- "8080:8080"