-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathDockge run command
14 lines (9 loc) · 934 Bytes
/
Dockge run command
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Here are the commands for the Dockge Video.
https://youtu.be/lEwEgR-nja4?si=dUH8H3_X9TQcc7L9
The project abanonded its run command in favour of using a compose file.
However as my video will also show a run command here is the updated command:
Copy and paste that entire command into your terminal or command prompt adjusting your paths or leaving them as is for volumes.
On docker with a linux host
docker run --restart unless-stopped -p 5001:5001 -v /var/run/docker.sock:/var/run/docker.sock -v ./data:/app/data -v /opt/stacks:/opt/stacks -e DOCKGE_STACKS_DIR=/opt/stacks louislam/dockge:1
On docker with a windows host (run with powershell)
docker run --restart unless-stopped -p 5001:5001 -v //var/run/docker.sock://var/run/docker.sock -v C:\Users\keith\Documents\dockerstuff\dockge\app\data:/app/data -v C:\Users\keith\Documents\dockerstuff\dockge\opt\stacks:/opt/stacks -e DOCKGE_STACKS_DIR=/opt/stacks louislam/dockge:1