forked from AMeierDev/java-telegram-chatbot
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart_docker_example.sh
More file actions
Latest commit
6 lines (5 loc) · 457 Bytes
/
Copy pathstart_docker_example.sh
File metadata and controls
6 lines (5 loc) · 457 Bytes
1
2
3
4
5
6
#Production
docker run -d --restart unless-stopped --name chatbot -v chatbotvol:/opt/telegrambot/data --env-file ./env.list amgamen/chatbot
#Develop
docker run -it -v chatbotvol:/opt/telegrambot/data --env-file ./env.list amgamen/chatbot
docker run -v chatbotvol:/opt/telegrambot/data --restart unless-stopped --name bot-develop -d -e "BOT_TOKEN=2103518689" -e "BOT_KEY=" -e "BOT_NAME=" -e "CREATOR_ID=" -e "CREATOR_PAYPAL_EMAIL=" amgamen/chatbot:develop