gwei-alert-bot/docker-compose.yml

32 lines
674 B
YAML
Raw Permalink Normal View History

2023-04-18 01:49:20 +00:00
version: '3'
services:
gwei-bot-redis:
2023-04-18 01:49:20 +00:00
image: redis
container_name: gwei-bot-redis
2023-04-18 01:49:20 +00:00
restart: always
volumes:
- redisdb:/data
2023-04-19 00:02:29 +00:00
command: redis-server --save 300 1 --appendonly yes
2023-04-18 01:49:20 +00:00
environment:
- REDIS_REPLICATION_MODE=master
- REDIS_APPENDONLY=yes
2023-04-19 00:02:29 +00:00
- REDIS_SAVE=300 1
2023-04-18 01:49:20 +00:00
gwei-alert-bot:
depends_on:
- gwei-bot-redis
2023-04-18 01:49:20 +00:00
build: .
container_name: gwei-alert-bot
working_dir: /usr/app
dns:
- 1.1.1.1
environment:
- NODE_ENV=production
2023-05-09 01:23:41 +00:00
- REDIS_URL=redis://gwei-bot-redis:6379
- DISCORD_BOT_TOKEN
- DISCORD_CLIENT
- RPC_URL
restart: unless-stopped
volumes:
redisdb: