You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/setup/operating-systems/linux-docker.md
+14-8Lines changed: 14 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -79,45 +79,50 @@ If `docker ps` does not yield any running containers, then continue on with the
79
79
80
80
Follow these instructions even if you do not have Docker installed, just to be sure that all traces of Docker are removed from your system to avoid interference later on.
In order to run Docker without sudo, we need to make sure the docker group is created and that the user is added to that group.
112
116
113
-
1.`sudo groupadd docker`
117
+
1.`sudo groupadd docker` (this might tell you that the group already exists; then just move on to the next step)
114
118
2.`sudo usermod -aG docker $USER`
115
119
3. Log out and back in to see the changes. If you are running a virtual machine, you may need to restart the virtual machine.
116
120
4. Make sure you can run docker without sudo: `docker ps`
117
121
118
122
## Set up the Discord bot
119
123
120
124
Please refer to the [Discord Bot Setup page](../discord/bot-creation/creation.md).
125
+
Complete the steps there and return back to this guide.
121
126
122
127
## Install and set up Zeppelin
123
128
@@ -157,8 +162,9 @@ This creates a folder called Zeppelin and clones the bot code there.
157
162
- Get your Discord ID (an 18-20-digit number) and fill it in.
158
163
- If there will be multiple people managing the bot, separate the user IDs with commas.
159
164
-`DEFAULT_ALLOWED_SERVERS`: Normally servers need to be allowed before the bot can be added to it. Otherwise it leaves. This indicates the first server that the bot could be added to, where administrative commands can be run to allow other servers.
165
+
- This usually will not be the server with normal members where Zeppelin will be used, but some kind of test server first.
160
166
- Fill in the Discord server's ID.
161
-
-`PHISHERMAN_API_KEY`: Phisherman is a live database used for identifying malicious, scam, and phishing links. Uncomment the row if you have an api key.
167
+
-`PHISHERMAN_API_KEY`: Phisherman is a live database used for identifying malicious, scam, and phishing links. Uncomment the row if you have an api key and paste the api key at the end.
162
168
- DEVELOPMENT: Skip the entire section
163
169
- STANDALONE: Fill in this section unless you already have a MySQL database service set up that you would like to use with Zeppelin. If you don't know, you don't, and fill in this section.
164
170
- STANDALONE_WEB_PORT: Leave this alone unless port 80 on the host computer is already occupied. If it is, change it to something like 81 or 82. If you change this value, go back up to DASHBOARD_URL and API_URL and add a port after the domain or IP. For example: http://zeppelin.gg:81 or http://8.8.8.8:81 for the dashboard and http://zeppelin.gg:81/api or http://8.8.8.8:81/api for the api.
0 commit comments