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
> Due to issues with Synology, Docker and user permissions, the only way this works is to be run as 'root'.
144
+
145
+
1. SSH into the server using your credentials.
146
+
147
+
```bash
148
+
ssh user@synology.local
149
+
```
150
+
151
+
2. Install the dependencies if you haven't already. For Synology this would be `Container Manager`, `Python` and `Git` (using the [SynoComunity](https://synocommunity.com) repo) through the package manager on the web dashboard.
152
+
153
+
3. Navigate to your docker container folder on your terminal.
154
+
155
+
```bash
156
+
cd example_docker_folder
157
+
```
158
+
159
+
4. Clone this repository.
160
+
161
+
```bash
162
+
git clone https://github.com/JDsnyke/crypto.git
163
+
```
164
+
165
+
6. Go into the new `crypto` folder, and update the usernames / passwords on the `start.sh` file as needed.
166
+
167
+
> [!TIP]
168
+
> Use the `Text Editor` in the web interface to edit files and values as needed!
169
+
170
+
7. Edit the `docker-bitcoin.yml` file in the `compose` folder as below, and save.
171
+
172
+
From,
173
+
174
+
```yaml
175
+
volumes:
176
+
- "../volumes/bitcoin/node:/data/.bitcoin"
177
+
```
178
+
179
+
To,
180
+
181
+
```yaml
182
+
volumes:
183
+
- "../volumes/bitcoin/node:/root/.bitcoin"
184
+
```
185
+
186
+
7. In the terminal, run the `start.sh` script. Enter your account password when prompted.
187
+
188
+
```bash
189
+
sudo bash start.sh
190
+
```
191
+
192
+
8. Stop the stack using the `stop.sh` script. Enter your account password when prompted.
193
+
194
+
```bash
195
+
sudo bash stop.sh
196
+
```
197
+
139
198
### Updates
140
199
141
200
1. Check for updates using the `start.sh` script argument.
@@ -196,11 +255,17 @@ STACK_RUN_LIGHTNING_SERVER="True" # From False
196
255
I am working on adding additional containers to the script. You will be able to toggle what you want!
197
256
198
257
> [!CAUTION]
199
-
> I will not provide any support for these containers.
258
+
> I will not provide any support for these containers. Please refer to the original providers!
0 commit comments