]> source.dussan.org Git - gitea.git/commitdiff
Notes on upgrading docker installation (#5395)
authorRyan Halliday <me@ryanhalliday.com>
Mon, 26 Nov 2018 01:51:02 +0000 (14:51 +1300)
committertechknowlogick <hello@techknowlogick.com>
Mon, 26 Nov 2018 01:51:02 +0000 (20:51 -0500)
* Notes on upgrading docker installation

Basis from [gogs/gogs](https://github.com/gogs/gogs/blob/master/docker/README.md)

* Feedback from @sapk to use docker-compose only

docs/content/doc/installation/with-docker.en-us.md

index 73596f074f37b653d11f63522fd8ef921ec08425..141ff4fa6f49ffc430a7433d646dc0171179d87b 100644 (file)
@@ -267,3 +267,16 @@ be placed in `/data/gitea` directory. If using host volumes it's quite easy to a
 files; for named volumes this is done through another container or by direct access at
 `/var/lib/docker/volumes/gitea_gitea/_data`. The configuration file will be saved at
 `/data/gitea/conf/app.ini` after the installation.
+
+# Upgrading
+
+:exclamation::exclamation: **Make sure you have volumed data to somewhere outside Docker container** :exclamation::exclamation:**
+
+To upgrade your installation to the latest release:
+```
+# Edit `docker-compose.yml` to update the version, if you have one specified
+# Pull new images
+docker-compose pull
+# Start a new container, automatically removes old one
+docker-compose up -d
+```