Run as daemon w/o systemd #2216
-
I would like to be able to launch code-server with a command like |
Beta Was this translation helpful? Give feedback.
Replies: 8 comments 1 reply
-
You can do I'd recommend using |
Beta Was this translation helpful? Give feedback.
-
will anyone work on this? |
Beta Was this translation helpful? Give feedback.
-
We currently don't have plans to implement this (although we might in
the future since this is an idea we've thought about in the past) but
PRs are welcome!
|
Beta Was this translation helpful? Give feedback.
-
yea, i don't know typescript :( |
Beta Was this translation helpful? Give feedback.
-
@reesericci could you clarify why |
Beta Was this translation helpful? Give feedback.
-
I'm using it in a docker container with other services, I don't use docker-compose. |
Beta Was this translation helpful? Give feedback.
-
If you start it with a shell, you can do |
Beta Was this translation helpful? Give feedback.
You can do
code-server & && disown
to run it in the background from a shell and keep it running after the shell exits.I'd recommend using
tmux
or the like anyway so that you can easily restart and record output.