improve docs

This commit is contained in:
les
2021-06-04 15:52:35 +02:00
parent 3b041df157
commit 4907f53dc2
9 changed files with 88 additions and 63 deletions

View File

@@ -1,7 +1,7 @@
---
layout: default
title: Backup
permalink: /backup
permalink: /install/backup
nav_order: 5
parent: Install
---
@@ -9,7 +9,7 @@ parent: Install
## Backup
The following commands should be valid for every setup (docker/debian/sqlite/postgres) but check your installation directory first.
This includes database, configuration, custom user locales, images and thumbnails for every release.
This includes database, configuration, custom user locales, logs, images and thumbnails.
```bash
cd /opt/gancio/ # or /home/gancio or where your installation is

View File

@@ -1,7 +1,6 @@
---
layout: default
title: Configuration
permalink: /config
permalink: /install/config
nav_order: 6
parent: Install
---

View File

@@ -5,8 +5,8 @@ permalink: /install/docker
parent: Install
nav_order: 2
---
## Table of contents
{: .no_toc .text-delta }
## Docker installation
{: .no_toc }
1. TOC
{:toc}
@@ -83,14 +83,14 @@ tail -f data/logs/gancio.log
> error "Upgrade from a version < 1.0"
> Since v1.0 our docker setup is changed and a new container has to be built:
>
> - `cd /opt/gancio`
> - [Backup your data](/backup)
> - Download new `Dockerfile` => `wget https://gancio.org/docker/Dockerfile`
> - Download new `docker-compose.yml` (modify DB to sqlite or postgres)-> `wget https://gancio.org/docker/<DB>/docker-compose.yml`
> - Build the new container `docker-compose build`
> - Extract your backup into `./data` => `mkdir data; tar xvzf gancio-<yourLastBackup>-backup.tgz -C data`
> - Stop your old container `docker-compose stop`
> - Start your new container `docker-compose up`
> 1. `cd /opt/gancio`
> 1. [Backup your data](/backup)
> 1. Download new `Dockerfile` <br/> `wget https://gancio.org/docker/Dockerfile`
> 1. Download new `docker-compose.yml` (substitute \<DB\> to sqlite or postgres): <br/>`wget https://gancio.org/docker/<DB>/docker-compose.yml`
> 1. Build the new container `docker-compose build`
> 1. Extract your backup into `./data` <br/>`mkdir data; tar xvzf gancio-<yourLastBackup>-backup.tgz -C data`
> 1. Stop your old container `docker-compose stop`
> 1. Start your new container `docker-compose up`
```bash

View File

@@ -1,6 +1,6 @@
---
layout: default
title: Nginx
title: Nginx setup
permalink: /install/nginx
parent: Install
---