NotificamBot/docker-compose.yml

23 lines
375 B
YAML
Raw Permalink Normal View History

2022-01-31 16:19:33 +01:00
version: '3.3'
services:
bot:
container_name: notificam-bot-server
build: .
image: 'notificam-bot'
restart: always
env_file: .env
depends_on:
- redis
redis:
container_name: notificam-bot-redis
image: redis
restart: always
ports:
- 6379:6379
env_file: .env
command: >
--requirepass ${REDIS_PASSWORD}