Self hostable application for saving web pages https://github.com/wallabag/wallabag
Go to file
3wc 88c34e9487
continuous-integration/drone/push Build is passing Details
chore: publish 0.5.2+2.6.8 release
2024-01-20 23:02:35 -03:00
release Rename release notes directory for correctness 2023-07-18 10:21:40 +01:00
.drone.yml Switch to self-hosted stack-ssh-deploy image [mass update] 2023-01-21 11:49:56 -08:00
.env.sample SECRET_SMTP_PASSWORD(→ _VERSION) to match format 2023-01-20 18:33:44 -08:00
.gitignore Initial commit 2020-10-06 22:24:46 +02:00
README.md Update abra syntax in examples (finally) [mass update] 2023-01-19 16:02:28 -08:00
abra.sh Various updates 2024-01-20 23:02:16 -03:00
compose.yml chore: publish 0.5.2+2.6.8 release 2024-01-20 23:02:35 -03:00
entrypoint.sh.tmpl Various updates 2024-01-20 23:02:16 -03:00

README.md

Wallabag

Build Status

Self hostable application for saving web pages • https://github.com/wallabag/wallabag

  • Category: Apps
  • Status: 1, alpha
  • Image: wallabag/wallabag, 4, upstream
  • Healthcheck: No
  • Backups: No
  • Email: No
  • Tests: 2
  • SSO: No

Basic usage

  1. Set up Docker Swarm and abra
  2. Deploy coop-cloud/traefik
  3. abra app new wallabag --secrets
  4. abra app config YOURAPPDOMAIN - be sure to change $DOMAIN to something that resolves to your Docker swarm box
  5. abra app deploy YOURAPPDOMAIN
  6. Initialise database
abra app YOURAPPDOMAIN run app bash
cd /var/www/wallabag/
php bin/console wallabag:install --env=prod -n

Database migrations

After Wallabag upgrades:

abra app run YOURDOMAIN app bash
cd /var/www/wallabag/
php bin/console doctrine:migrations:migrate --env=prod --no-interaction