Replies: 1 comment 1 reply
|
Please confirm you don't have any critical unused volumes that you're saving for some reason, IF you do, create a backup and/or modify the following commands to specifically remove the associated dockge volume only, if it exists. I only mention this as I did not have any issues moving from louislam's official to my fork seems same is true at least for @Angrite #31 if in current dockge compose file directory: from any directory (point to compose file): Also, as a workaround/test, modify your compose and just have it point to a new/fresh config location. The DB doesn't store much in way of configuration so most you'll have to do is recreate the login |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
I updated the louislam/dockge:1 compose.yaml to cmcooper1980/dockge:latest for my two dockge instances. They booted up independently just fine.
But there's one issue: I can't add the other as a separate Agent. I get this error:
insert into `agent` (`name`, `password`, `url`, `username`) values ('', '[redacted]', 'http://192.168.1.213:5001', 'myuser') - SQLITE_ERROR: table agent has no column named nameIt looks like your version has a new column for agent names, but it didn't update the database with the column. louislam's version doesn't have this column in the db.
Based on this stackoverflow post, "When you add a column and don't use onUpdate method, existing tables don't have the new column added. This is not to say that you should use onUpdate every time you change your schema during development- onUpdate should be used when you actually release a new version of your app."
Hoping @cmcooper1980 can add some insight, as I can't use external agents with this repo, without this column being added.
All reactions