KickerBot/docker-compose.yml

26 lines
392 B
YAML
Raw 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:
2023-09-10 13:44:25 +03:00
image: mongo:4
2021-12-07 01:18:44 +03:00
restart: always
env_file:
- mongo.env
2021-12-07 01:18:44 +03:00
ports:
- 27017
volumes:
- mongodata:/data/db
- mongoconfig:/data/configdb
2021-12-07 01:18:44 +03:00
volumes:
mongodata:
2022-11-09 02:02:12 +03:00
mongoconfig: