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: README.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,6 +40,17 @@ You can check on the status of your newly running pod with:
40
40
docker-compose logs
41
41
```
42
42
43
+
If you'd prefer to utilize Docker without docker-compose, you can use the following command (substituting your values and adding any necessary environment variables):
44
+
45
+
```bash
46
+
docker run -d --name adguard-sync --restart=always \
47
+
-e "ADGUARD_PRIMARY=http://192.168.1.2" \
48
+
-e "ADGUARD_SECONDARY=http://192.168.1.3" \
49
+
-e "ADGUARD_USER=admin" \
50
+
-e "ADGUARD_PASS=password" \
51
+
atoy3731/adguard-sync:2.1
52
+
```
53
+
43
54
**NOTE:** The container is set to automatically restart when the docker daemon restarts.
0 commit comments