8000 Update the uprade docs to use the new upgrade command by stnguyen90 · Pull Request #423 · appwrite/docs · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Sep 29, 2023. It is now read-only.

Update the uprade docs to use the new upgrade command #423

Merged
merged 1 commit into from
Aug 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions app/views/docs/upgrade.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<pre class="line-numbers"><code class="prism language-bash" data-prism>docker run -it --rm \
--volume /var/run/docker.sock:/var/run/docker.sock \
--volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \
--entrypoint="install" \
--entrypoint="upgrade" \
appwrite/appwrite:<?php echo APP_VERSION_STABLE; ?></code></pre>
</div>
</li>
Expand All @@ -41,7 +41,7 @@
<pre class="line-numbers"><code class="prism language-bash" data-prism>docker run -it --rm ^
--volume //var/run/docker.sock:/var/run/docker.sock ^
--volume "%cd%"/appwrite:/usr/src/code/appwrite:rw ^
--entrypoint="install" ^
--entrypoint="upgrade" ^
appwrite/appwrite:<?php echo APP_VERSION_STABLE; ?></code></pre>
</div>
</li>
Expand All @@ -52,7 +52,7 @@
<pre class="line-numbers"><code class="prism language-bash" data-prism>docker run -it --rm `
--volume /var/run/docker.sock:/var/run/docker.sock `
--volume ${pwd}/appwrite:/usr/src/code/appwrite:rw `
--entrypoint="install" `
--entrypoint="upgrade" `
appwrite/appwrite:<?php echo APP_VERSION_STABLE; ?></code></pre>
</div>
</li>
Expand Down
0