Follow new exciting README standard
continuous-integration/drone/push Build is passing Details

See coop-cloud/organising#31
This commit is contained in:
3wc 2021-03-02 18:38:45 +02:00
parent dd89f77b0f
commit 0e88a8cd41
1 changed files with 15 additions and 11 deletions

View File

@ -4,24 +4,28 @@
Self hostable application for saving web pages • https://github.com/wallabag/wallabag Self hostable application for saving web pages • https://github.com/wallabag/wallabag
<!-- metadata -->
* **Category**: Apps
* **Status**: ❸🍎
* **Image**: [`wallabag/wallabag`](https://hub.docker.com/r/wallabag/wallabag), ❶💚, upstream
* **Healthcheck**: No
* **Backups**: No
* **Email**: No
* **Tests**: ❷💛
* **SSO**: No
<!-- endmetadata -->
## Basic usage ## Basic usage
1. Set up Docker Swarm and [`abra`] 1. Set up Docker Swarm and [`abra`]
2. Deploy [`compose-stacks/traefik`] 2. Deploy [`compose-stacks/traefik`]
3. `git clone https://git.autonomic.zone/compose-stacks/wallabag.git && cd wallabag` 3. `abra app new wallabag --secrets`
3. `cp .envrc.sample .envrc` 4. `abra app YOURAPPDOMAIN config` - be sure to change `$DOMAIN` to something that resolves to
4. Edit `.envrc` - be sure to change `DOMAIN` to something that resolves to
your Docker swarm box your Docker swarm box
5. `direnv allow` (or `. .envrc`) 5. `abra app YOURAPPDOMAIN deploy`
6. Generate secrets:
```
abra secret generate db_password v1
abra secret generate db_root_password v1
```
7. `abra deploy`
8. Initialise database 8. Initialise database
``` ```
abra run app bash abra app YOURAPPDOMAIN run app bash
cd /var/www/wallabag/ cd /var/www/wallabag/
php bin/console wallabag:install --env=prod -n php bin/console wallabag:install --env=prod -n
``` ```