Running a fresh git clone of airbyte and getting t...
# ask-community-for-troubleshooting
a
Running a fresh git clone of airbyte and getting this error on
docker-compose up
Copy code
airbyte-server      | 2022-02-02 02:15:45 ERROR i.a.s.ServerApp(main):236 - Server failed
airbyte-server      | java.lang.NullPointerException: Cannot invoke "org.flywaydb.core.api.MigrationInfo.getVersion()" because the return value of "io.airbyte.db.instance.DatabaseMigrator.getLatestMigration()" is null
airbyte-server      |   at io.airbyte.db.instance.MinimumFlywayMigrationVersionCheck.assertMigrations(MinimumFlywayMigrationVersionCheck.java:75) ~[io.airbyte.airbyte-db-lib-0.35.15-alpha.jar:?]
airbyte-server      |   at io.airbyte.server.ServerApp.assertDatabasesReady(ServerApp.java:131) ~[io.airbyte-airbyte-server-0.35.15-alpha.jar:?]
airbyte-server      |   at io.airbyte.server.ServerApp.getServer(ServerApp.java:155) ~[io.airbyte-airbyte-server-0.35.15-alpha.jar:?]
airbyte-server      |   at io.airbyte.server.ServerApp.main(ServerApp.java:234) [io.airbyte-airbyte-server-0.35.15-alpha.jar:?]
airbyte-server exited with code 1
1
t
do a
docker compose down -v
to remove any volumes that are probably being reused there
since the volume on the docker compose for the database is called "db", that might conflict with other volumes with the same (not so unique) name
a
That did it! thanks!