Skip to content

Commit

Permalink
docs: fix docker run command on documentation (#784)
Browse files Browse the repository at this point in the history
  • Loading branch information
yohamta authored Jan 9, 2025
1 parent 8a64f4b commit ad9efd8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,7 @@ brew upgrade dagu-org/brew/dagu
docker run \
--rm \
-p 8080:8080 \
-v $HOME/.config/dagu/dags:/home/dagu/.config/dagu/dags \
-v $HOME/.local/share/dagu:/home/dagu/.local/share/dagu \
-v ~/.config/dagu:/config \
-e DAGU_TZ=`ls -l /etc/localtime | awk -F'/zoneinfo/' '{print $2}'` \
ghcr.io/dagu-org/dagu:latest dagu start-all
```
Expand Down
6 changes: 3 additions & 3 deletions docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ Via Docker
docker run \
--rm \
-p 8080:8080 \
-v $HOME/.config/dagu:/home/dagu/.config/dagu \
-v $HOME/.config/dagu/.local/share:/home/dagu/.local/share \
ghcr.io/dagu-org/dagu:latest
-v ~/.config/dagu:/config \
-e DAGU_TZ=`ls -l /etc/localtime | awk -F'/zoneinfo/' '{print $2}'` \
ghcr.io/dagu-org/dagu:latest dagu start-all
Via GitHub Release Page
-----------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/source/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Quick Start Guide
1. Launch the Web UI
---------------------

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

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.

Expand Down

0 comments on commit ad9efd8

Please sign in to comment.