Update 'docs/operators/handbook.md'
continuous-integration/drone/push Build is passing Details

This commit is contained in:
mayel 2023-01-06 19:12:50 +00:00
parent 1fc89b1e08
commit 765987d423
1 changed files with 4 additions and 0 deletions

View File

@ -312,6 +312,10 @@ Running `server add` with `-d/--debug` should help you debug what is going on un
If you need to run a command within a running container you can use `abra app run <domain> <service> <command>`. For example, you could run `abra app run cloud.lumbung.space app bash` to open a new bash terminal session inside your remote container.
## How do I attach on a non-running container?
If you need to run a command on a container that won't start (eg. the container is stuck in a restart loop) you can temporarily disable its default entrypoint by setting it in `compose.yml` to something like ['tail', '-f', '/dev/null'], then redeploy the stack (with `--force --chaos` so you don't need to commit), then [get into the now running container](#how-do-i-attach-to-a-running-container), do your business, and when done revert the compose.yml change and redeploy again.
## Can I run Co-op Cloud on ARM?
`@Mayel`: