chat-environment Initial setup Create .env file echo -e "ROOT_URL=https://chat.example.com\nMAIL_URL=smtp://mail.example.com:25\nROCKETCHAT_PASSWORD=botpassword\nROCKETCHAT_ROOM=GENERAL\nROCKETCHAT_USER=bot\nBOT_NAME=bot\nLISTEN_ON_ALL_PUBLIC=true\nEXTERNAL_SCRIPTS=hubot-help,hubot-links,hubot-standup-alarm,hubot-redis-brain" > .env Control Start/restart environment ./scripts/launch.sh scale docker-compose scale rocketchat=4 Plugins Create .plugins file echo -e "\${DOCKER_BIN_DIRECTORY}/docker exec -it chatenvironment_hubot_1 npm install hubot-giphy --save\n" > .plugins Add plugin to .env file sed -i '/^EXTERNAL_SCRIPTS/ s/$/,hubot-giphy/' .env