github KartoffelChipss/pelagica 2.0.0
Release 2.0.0

10 hours ago

Changes

  • Added a backend to manage the configuration
  • Added a settings page to edit pelagica settings from the frontend (admin users only)
  • Updated Docker image to use a config directory instead of directly mapping the config.json

⚠️ Migration Guide (from 1.x.x)

If you are upgrading from Pelagica 1.x.x and are running it via Docker, you’ll need to update your volume mappings.
Version 2 no longer mounts individual config files. It instead expects a config directory.

Required actions

  1. Remove old config file mappings

    • Any volume mappings that point directly to config.json or config.schema.json should be removed.
  2. Mount your config directory

    • Map the directory containing your config.json to /config inside the container.

Example

Old (Pelagica 1.x.x)

volumes:
  - /mnt/user/appdata/pelagica/config.json:/usr/share/nginx/html/config.json
  - /mnt/user/appdata/pelagica/config.schema.json:/usr/share/nginx/html/config.schema.json

New (Pelagica 2.x.x)

volumes:
  - /mnt/user/appdata/pelagica:/config

After updating the volume mapping, restart the container to apply the changes.

Don't miss a new pelagica release

NewReleases is sending notifications on new releases.