mirror of
https://github.com/eventials/goevents.git
synced 2025-04-24 13:48:53 +08:00
15 lines
357 B
YAML
15 lines
357 B
YAML
version: '2'
|
|
services:
|
|
app:
|
|
build: .
|
|
working_dir: /go/src/github.com/eventials/goevents
|
|
command: dockerize -wait tcp://broker:5672 -timeout 60s go run examples/consumer/consumer.go
|
|
links:
|
|
- broker
|
|
volumes:
|
|
- .:/go/src/github.com/eventials/goevents
|
|
broker:
|
|
image: rabbitmq:3.6-management
|
|
ports:
|
|
- "15672:15672"
|