Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docker API Container crashes and keeps restarting #412

Open
aguzmant103 opened this issue Feb 27, 2024 · 0 comments
Open

Docker API Container crashes and keeps restarting #412

aguzmant103 opened this issue Feb 27, 2024 · 0 comments
Labels
bug 🐛 Something isn't working devops 🔧 Operations management and dev tools

Comments

@aguzmant103
Copy link
Collaborator

Error when starting up Docker API container

2024-01-24 11:48:22 [Nest] 1  - 01/24/2024, 5:48:22 PM     LOG [NestFactory] Starting Nest application...
2024-01-24 11:48:22 [Nest] 1  - 01/24/2024, 5:48:22 PM     LOG [InstanceLoader] AppModule dependencies initialized +58ms
2024-01-24 11:48:22 [Nest] 1  - 01/24/2024, 5:48:22 PM     LOG [InstanceLoader] TypeOrmModule dependencies initialized +0ms
2024-01-24 11:48:22 [Nest] 1  - 01/24/2024, 5:48:22 PM     LOG [InstanceLoader] ThrottlerModule dependencies initialized +0ms
2024-01-24 11:48:22 [Nest] 1  - 01/24/2024, 5:48:22 PM     LOG [InstanceLoader] DiscoveryModule dependencies initialized +0ms
2024-01-24 11:48:22 [Nest] 1  - 01/24/2024, 5:48:22 PM     LOG [InstanceLoader] ScheduleModule dependencies initialized +0ms
2024-01-24 11:48:22 [Nest] 1  - 01/24/2024, 5:48:22 PM     LOG [InstanceLoader] TypeOrmCoreModule dependencies initialized +22ms
2024-01-24 11:48:22 [Nest] 1  - 01/24/2024, 5:48:22 PM     LOG [InstanceLoader] TypeOrmModule dependencies initialized +0ms
2024-01-24 11:48:22 [Nest] 1  - 01/24/2024, 5:48:22 PM     LOG [InstanceLoader] TypeOrmModule dependencies initialized +0ms
2024-01-24 11:48:22 [Nest] 1  - 01/24/2024, 5:48:22 PM     LOG [InstanceLoader] TypeOrmModule dependencies initialized +1ms
2024-01-24 11:48:22 [Nest] 1  - 01/24/2024, 5:48:22 PM     LOG [InstanceLoader] TypeOrmModule dependencies initialized +0ms
2024-01-24 11:48:22 [Nest] 1  - 01/24/2024, 5:48:22 PM     LOG [InstanceLoader] AdminsModule dependencies initialized +71ms
2024-01-24 11:48:22 [Nest] 1  - 01/24/2024, 5:48:22 PM     LOG [InstanceLoader] CredentialsModule dependencies initialized +1ms
2024-01-24 11:48:22 [Nest] 1  - 01/24/2024, 5:48:22 PM     LOG [InstanceLoader] AuthModule dependencies initialized +0ms
2024-01-24 11:48:22 [Nest] 1  - 01/24/2024, 5:48:22 PM     LOG [InstanceLoader] GroupsModule dependencies initialized +1ms
2024-01-24 11:48:22 [Nest] 1  - 01/24/2024, 5:48:22 PM     LOG [InstanceLoader] InvitesModule dependencies initialized +0ms
2024-01-24 11:48:22 /home/node/api/node_modules/typeorm/driver/sqlite/SqliteQueryRunner.js:81
2024-01-24 11:48:22                     fail(new QueryFailedError_1.QueryFailedError(query, parameters, err));
2024-01-24 11:48:22                          ^
2024-01-24 11:48:22 
2024-01-24 11:48:22 QueryFailedError: SQLITE_ERROR: no such table: groups
2024-01-24 11:48:22     at handler (/home/node/api/node_modules/typeorm/driver/sqlite/SqliteQueryRunner.js:81:26)
2024-01-24 11:48:22     at replacement (/home/node/api/node_modules/sqlite3/lib/trace.js:25:27)
2024-01-24 11:48:22     at Statement.errBack (/home/node/api/node_modules/sqlite3/lib/sqlite3.js:15:21) {
2024-01-24 11:48:22   query: 'SELECT "Group"."id" AS "Group_id", "Group"."name" AS "Group_name", "Group"."description" AS "Group_description", "Group"."admin_id" AS "Group_admin_id", "Group"."tree_depth" AS "Group_tree_depth", "Group"."fingerprint_duration" AS "Group_fingerprint_duration", "Group"."credentials" AS "Group_credentials", "Group"."api_enabled" AS "Group_api_enabled", "Group"."api_key" AS "Group_api_key", "Group"."created_at" AS "Group_created_at", "Group"."updated_at" AS "Group_updated_at", "Group__Group_members"."id" AS "Group__Group_members_id", "Group__Group_members"."created_at" AS "Group__Group_members_created_at" FROM "groups" "Group" LEFT JOIN "memberships" "Group_Group__Group_members" ON "Group_Group__Group_members"."group"="Group"."id" LEFT JOIN "members" "Group__Group_members" ON "Group__Group_members"."id"="Group_Group__Group_members"."member"',
2024-01-24 11:48:22   parameters: [],
2024-01-24 11:48:22   driverError: Error: SQLITE_ERROR: no such table: groups
2024-01-24 11:48:22   --> in Database#all('SELECT "Group"."id" AS "Group_id", "Group"."name" AS "Group_name", "Group"."description" AS "Group_description", "Group"."admin_id" AS "Group_admin_id", "Group"."tree_depth" AS "Group_tree_depth", "Group"."fingerprint_duration" AS "Group_fingerprint_duration", "Group"."credentials" AS "Group_credentials", "Group"."api_enabled" AS "Group_api_enabled", "Group"."api_key" AS "Group_api_key", "Group"."created_at" AS "Group_created_at", "Group"."updated_at" AS "Group_updated_at", "Group__Group_members"."id" AS "Group__Group_members_id", "Group__Group_members"."created_at" AS "Group__Group_members_created_at" FROM "groups" "Group" LEFT JOIN "memberships" "Group_Group__Group_members" ON "Group_Group__Group_members"."group"="Group"."id" LEFT JOIN "members" "Group__Group_members" ON "Group__Group_members"."id"="Group_Group__Group_members"."member"', [], [Function: handler])
2024-01-24 11:48:22       at execute (/home/node/api/node_modules/typeorm/driver/sqlite/SqliteQueryRunner.js:62:46)
2024-01-24 11:48:22       at /home/node/api/node_modules/typeorm/driver/sqlite/SqliteQueryRunner.js:103:19 {
2024-01-24 11:48:22     errno: 1,
2024-01-24 11:48:22     code: 'SQLITE_ERROR',
2024-01-24 11:48:22     __augmented: true
2024-01-24 11:48:22   },
2024-01-24 11:48:22   errno: 1,
2024-01-24 11:48:22   code: 'SQLITE_ERROR',
2024-01-24 11:48:22   __augmented: true
2024-01-24 11:48:22 }
2024-01-24 11:48:22 
2024-01-24 11:48:22 Node.js v18.19.0
@aguzmant103 aguzmant103 converted this from a draft issue Feb 27, 2024
@aguzmant103 aguzmant103 added bug 🐛 Something isn't working devops 🔧 Operations management and dev tools labels Feb 27, 2024
@vplasencia vplasencia moved this to 📋 Backlog in Bandada Board Mar 17, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug 🐛 Something isn't working devops 🔧 Operations management and dev tools
Projects
Status: 📋 Backlog
Development

No branches or pull requests

1 participant