mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 18:42:30 +03:00
40 lines
1.1 KiB
ReStructuredText
40 lines
1.1 KiB
ReStructuredText
Updating Hasura GraphQL engine running with Docker
|
|
==================================================
|
|
|
|
.. contents:: Table of contents
|
|
:backlinks: none
|
|
:depth: 1
|
|
:local:
|
|
|
|
This guide will help you update Hasura GraphQL engine running with Docker. This guide assumes that you already have
|
|
Hasura GraphQL engine running with Docker.
|
|
|
|
Step 1: Check the latest release version
|
|
----------------------------------------
|
|
|
|
The current latest version is:
|
|
|
|
.. raw:: html
|
|
|
|
<code>hasura/graphql-engine:<span class="latest-release-tag">latest</span></code>
|
|
|
|
All the versions can be found at: https://github.com/hasura/graphql-engine/releases
|
|
|
|
Step 2: Update the Docker image
|
|
-------------------------------
|
|
|
|
In the ``docker run`` command or the ``docker-compose`` command that you're running, update the image tag to this
|
|
latest version.
|
|
|
|
For example, if you had:
|
|
|
|
.. raw:: html
|
|
|
|
<code>docker run hasura/graphql-engine:v1.0.0-alpha01 ...</code>
|
|
|
|
you should change it to:
|
|
|
|
.. raw:: html
|
|
|
|
<code>docker run hasura/graphql-engine:<span class="latest-release-tag">latest</span> ...</code>
|