forked from AMeierDev/java-telegram-chatbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate_volume.sh
More file actions
9 lines (9 loc) · 744 Bytes
/
create_volume.sh
File metadata and controls
9 lines (9 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
mkdir -p /home/bigmama/chatbot/data/chatbotvol-develop
chown 1001:1001 /home/bigmama/chatbot/data/chatbotvol-develop
docker volume create --opt type=none --opt o=bind --opt device=/home/bigmama/chatbot/data/chatbotvol-develop --name chatbotvol-develop
mkdir -p /home/bigmama/chatbot/data/chatbotvol-staging
chown 1001:1001 /home/bigmama/chatbot/data/chatbotvol-staging
docker volume create --opt type=none --opt o=bind --opt device=/home/bigmama/chatbot/data/chatbotvol-staging --name chatbotvol-staging
mkdir -p /home/bigmama/chatbot/data/chatbotvol-main
chown 1001:1001 /home/bigmama/chatbot/data/chatbotvol-main
docker volume create --opt type=none --opt o=bind --opt device=/home/bigmama/chatbot/data/chatbotvol-main --name chatbotvol-main