Please advice on Site URL migration #1922
-
Hello, I've been following the docs Site URL migration, so I prepared When running the migration command (my site id is docker exec -it remark42 remap -s remark -f var/rules I get the following error: OCI runtime exec failed: exec failed: unable to start container process: exec: "remap": executable file not found in $PATH: unknown Any idea what I am doing wrong here? |
Beta Was this translation helpful? Give feedback.
Answered by
amirhomayoun
Apr 4, 2025
Replies: 1 comment 1 reply
-
Try:
Note the extra remark42. The first one is to tell docker which instance to use (I am assuming that's the name you used in your docker compose file, if not use whatever name you used there), and the second one is the command you want to run inside the docker, i.e. the remark42 binary. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
gatezh
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Try:
Note the extra remark42. The first one is to tell docker which instance to use (I am assuming that's the name you used in your docker compose file, if not use whatever name you used there), and the second one is the command you want to run inside the docker, i.e. the remark42 binary.