KickerBot/docker-compose.yml

34 lines
540 B
YAML
Raw Permalink Normal View History

2021-12-07 01:18:44 +03:00
# Use root/example as user/password credentials
version: '3.1'
services:
bot:
build: .
restart: always
depends_on:
- mongo
env_file:
- bot.env
2021-12-07 01:18:44 +03:00
mongo:
image: mongo
restart: always
env_file:
- mongo.env
2021-12-07 01:18:44 +03:00
ports:
2022-11-09 02:02:12 +03:00
- 127.0.0.1:28002:27017
volumes:
- mongodata:/data/db
- mongoconfig:/data/configdb
2021-12-07 01:18:44 +03:00
mongo-express:
image: mongo-express
restart: always
ports:
2022-11-09 02:02:12 +03:00
- 127.0.0.1:8088:8081
env_file:
- mongo.env
volumes:
mongodata:
2022-11-09 02:02:12 +03:00
mongoconfig: