27 lines
416 B
YAML
27 lines
416 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
mikopbx-bot:
|
|
build: ./bot
|
|
container_name: mikopbx-bot
|
|
restart: unless-stopped
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- ./bot/data:/app/data
|
|
depends_on:
|
|
- redis
|
|
networks:
|
|
- bot-net
|
|
|
|
redis:
|
|
image: redis:7-alpine
|
|
container_name: mikopbx-redis
|
|
restart: unless-stopped
|
|
networks:
|
|
- bot-net
|
|
|
|
networks:
|
|
bot-net:
|
|
driver: bridge
|