1
0
mirror of https://github.com/eventials/goevents.git synced 2025-04-24 13:48:53 +08:00
eventials.goevents/docker-compose.yml

15 lines
357 B
YAML
Raw Normal View History

2016-11-25 18:51:34 -02:00
version: '2'
services:
app:
build: .
working_dir: /go/src/github.com/eventials/goevents
2017-03-09 23:17:20 -03:00
command: dockerize -wait tcp://broker:5672 -timeout 60s go run examples/consumer/consumer.go
2016-11-25 18:51:34 -02:00
links:
- broker
volumes:
- .:/go/src/github.com/eventials/goevents
broker:
image: rabbitmq:3.6-management
2016-12-28 09:20:29 -02:00
ports:
- "15672:15672"