AppFlowy
AppFlowy copied to clipboard
fix: Modified to launch the app from docker-compose.
Description
Fixes : #4349
This PR addresses two errors that occur in the "Building with the repository installed" process using Docker Compose.
- https://docs.appflowy.io/docs/appflowy/install-appflowy/installation-methods/installing-with-docker#building-with-the-repository-installed
Changes
Error 1 : This is mentioned in issue #4349 .
./AppFlowy: error while loading libraries: libnotify.so.4: cannot open shared object file:no such file or directory
Added the libnotify package to the App side.
Error 2 : After resolving Error 1, I confirmed that the following error occurs.
Unhandled Exception: Invalid argument(s): Failed to load dynamic library 'libdart_ffi.so': librocksdb.so.9.4: cannot open shared object file: No such file or directory
Therefore, rocksdb was also added.
Results
After adding these, I confirmed that the app lauches as expected when running the build and docker compose up.
Feature Preview
PR Checklist
- [x] My code adheres to AppFlowy's Conventions
- [x] I've listed at least one issue that this PR fixes in the description above.
- [ ] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes.
- [ ] All existing tests are passing.