Bug Fixes
-
Fix .env not persisted across Docker container recreation (#10) — The
.envfile (containing theAPP_KEYused to encrypt SSH keys and S3 credentials) was stored inside the container's ephemeral filesystem. Afterdocker compose down/up, a newAPP_KEYwas generated, making all encrypted data undecryptable. The.envis now stored on the/var/bbspersistent volume with a symlink back to the expected path. Existing containers are migrated automatically on next start. -
Fix rclone test connection failures in Docker — The S3 test connection was missing essential environment variables (
HOME,PATH,RCLONE_CONFIG), causing rclone to fail withgetent not foundand.rclone.conf not founderrors.