Files
discordeno/examples/bigbot/docker-compose.yml
Jonathan Ho d04a040f28 Setup turborepo (#2610)
* chore: BREAKING move to monorepo structure

* chore: setup turborepo
2022-12-01 01:59:02 +08:00

44 lines
672 B
YAML

version: '3.8'
services:
influxdb:
image: "influxdb:2.4.0-alpine"
ports:
- 127.0.0.1:8086:8086
env_file:
- .env
rabbitmq:
build:
context: .
target: rabbitmq
ports:
- 127.0.0.1:15672:15672
rest:
build:
context: .
target: rest
deploy:
replicas: 2
depends_on:
- influxdb
env_file:
- .env
gateway:
build:
context: .
target: gateway
depends_on:
- rest
deploy:
replicas: 2
env_file:
- .env
bot:
build:
context: .
target: bot
depends_on:
- rest
deploy:
replicas: 2
env_file:
- .env