Self hostable application for saving web pages https://github.com/wallabag/wallabag
Go to file
3wc 6ac1dd3c40
continuous-integration/drone/push Build is passing Details
chore: publish 0.4.1+2.5.2 release
2023-01-20 18:42:32 -08:00
releases chore: publish 0.4.1+2.5.2 release 2023-01-20 18:42:32 -08:00
.drone.yml Update Drone for new var name 2023-01-20 18:42:09 -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 use custom entrypoint 2022-11-12 12:20:07 +01:00
compose.yml chore: publish 0.4.1+2.5.2 release 2023-01-20 18:42:32 -08:00
entrypoint.sh.tmpl use custom entrypoint 2022-11-12 12:20:07 +01: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