Show-Key Docker Container #1124
-
How do you run the seq command when running seq in a docker container? Whenever I try to run seq, it is trying to run this seq: https://manpages.ubuntu.com/manpages/trusty/man1/seq.1.html Here is the command I tried: -it seq refers to the name of my docker instance. I tried this command from the documentation, but that just stared a new seq container and produced the key for that one. I was able to connect to my seq instance and print out the Seq.json file and get the key from there by:
Even though I have the key now, I'm not sure how I can run the backup command |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi! All of the Seq command-line is also exposed by the Docker container (more or less), so it should be possible (if the data volume can be mounted read-only while in use), to run:
On Docker, however, since there's no equivalent of Windows' DPAPI applied to the value in the config file, it's possible to just copy the value from Seq.json as you've done, and supply this to the |
Beta Was this translation helpful? Give feedback.
Hi! All of the Seq command-line is also exposed by the Docker container (more or less), so it should be possible (if the data volume can be mounted read-only while in use), to run:
On Docker, however, since there's no equivalent of Windows' DPAPI applied to the value in the config file, it's possible to just copy the value from Seq.json as you've done, and supply this to the
restore
command if needed.