Skip to content

Instantly share code, notes, and snippets.

@gfaraj
Last active February 8, 2020 15:13
Show Gist options
  • Save gfaraj/e9459a5d90cdcb923655f70ae456b96a to your computer and use it in GitHub Desktop.
Save gfaraj/e9459a5d90cdcb923655f70ae456b96a to your computer and use it in GitHub Desktop.
version: '3.7'
services:
super-bot-whatsapp:
image: gfaraj/super-bot-whatsapp:latest
build: .
hostname: superbotwhatsapp
restart: always
env_file:
- super-bot-whatsapp.env
environment:
NODE_ENV: production
SUPERBOT_URL: http://host.docker.internal:3000/message
CALLBACK_HOST: localhost
PUPPETEER_MODE: headless
ports:
- 3001:3001
super-bot-slack:
image: gfaraj/super-bot-slack:latest
build: .
hostname: superbotslack
restart: always
env_file:
- super-bot-slack.env
environment:
NODE_ENV: production
SUPERBOT_URL: http://host.docker.internal:3000/message
CALLBACK_HOST: localhost
ports:
- 3002:3002
super-bot-discord:
image: gfaraj/super-bot-discord:latest
build: .
hostname: superbotdiscord
restart: always
env_file:
- super-bot-discord.env
environment:
NODE_ENV: production
SUPERBOT_URL: http://host.docker.internal:3000/message
CALLBACK_HOST: localhost
ports:
- "3003:3003"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment