Skip to content

Commit ad9efd8

Browse files
authored
docs: fix docker run command on documentation (#784)
1 parent 8a64f4b commit ad9efd8

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,7 @@ brew upgrade dagu-org/brew/dagu
131131
docker run \
132132
--rm \
133133
-p 8080:8080 \
134-
-v $HOME/.config/dagu/dags:/home/dagu/.config/dagu/dags \
135-
-v $HOME/.local/share/dagu:/home/dagu/.local/share/dagu \
134+
-v ~/.config/dagu:/config \
136135
-e DAGU_TZ=`ls -l /etc/localtime | awk -F'/zoneinfo/' '{print $2}'` \
137136
ghcr.io/dagu-org/dagu:latest dagu start-all
138137
```

docs/source/installation.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ Via Docker
3636
docker run \
3737
--rm \
3838
-p 8080:8080 \
39-
-v $HOME/.config/dagu:/home/dagu/.config/dagu \
40-
-v $HOME/.config/dagu/.local/share:/home/dagu/.local/share \
41-
ghcr.io/dagu-org/dagu:latest
39+
-v ~/.config/dagu:/config \
40+
-e DAGU_TZ=`ls -l /etc/localtime | awk -F'/zoneinfo/' '{print $2}'` \
41+
ghcr.io/dagu-org/dagu:latest dagu start-all
4242
4343
Via GitHub Release Page
4444
-----------------------

docs/source/quickstart.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Quick Start Guide
77
1. Launch the Web UI
88
---------------------
99

10-
Start the server with ``dagu server`` and browse to http://127.0.0.1:8080 to explore the Web UI.
10+
Start the server with ``dagu start-all`` and browse to http://127.0.0.1:8080 to explore the Web UI.
1111

1212
Note: The server will be started on port ``8080`` by default. You can change the port by passing ``--port`` option. See :ref:`Host and Port Configuration` for more details.
1313

0 commit comments

Comments
 (0)