Created
December 21, 2025 19:48
-
-
Save seamonkey420/8f1ff8cfcec6b1adb28e4f5184d5c933 to your computer and use it in GitHub Desktop.
Migrating Kometa from Synology NAS Container to Windows Docker for Desktop Notes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Just some notes on migrating a Kometa setup running in Container Manager on Synology to | |
| a Windows 11 and Docker for Desktop setup. | |
| -Install Docker for Desktop if not done already, use WSL for Linux. | |
| -Create a working kometa folder (ie E:\Projects\Kometa ) | |
| -Copy the config folder from your Synology's Kometa setup to the working kometa folder from above | |
| (E:\Projects\Kometa\Config). This will have the assets, logs, overlays folders and your yml and cache files | |
| -Open up Terminal on windows | |
| -Download the kometa image, type this in terminal: | |
| docker run --rm kometateam/kometa --run | |
| --At this point, we should be good to since we already have the Plex API and other api keys setup in the config.yml | |
| we copied over | |
| All you have to do now to run is use terminal or create a .cmd or .bat file | |
| and put this command in it (update w/your kometa location; example uses E:\Projects\kometa\config) | |
| docker run --rm -it -v "E:\Projects\kometa\config:/config:rw" kometateam/kometa --run | |
| ### Win11 and Docker, Terminal Commands ## | |
| ### using default config.yml file ### | |
| docker run --rm -it -v "E:\Projects\kometa\config:/config:rw" kometateam/kometa --run | |
| ### using specific config files ### | |
| docker run --rm -it -v "E:\Projects\kometa\config:/config:rw" kometateam/kometa --config "/config/config-collections.yml" --run | |
| ### using the latest release ### | |
| docker run --rm -it -v "E:\Projects\kometa\config:/config:rw" kometateam/kometa:latest --run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment