We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27d5852 commit 218e8e7Copy full SHA for 218e8e7
README.md
@@ -37,3 +37,21 @@
37
- Responce:
38
- Http responce generated by code if execution is successful
39
- `{ rejected: any; }` - on error
40
+
41
+## Diagnostics
42
43
+### Logs
44
45
+#### Get container logs to console:
46
47
+```bash
48
+docker logs $(docker ps -a -q --filter "ancestor=deepf/js-docker-isolation-provider:main")
49
+```
50
51
+#### Get container logs to file:
52
53
+Sometimes console cannot output the full logs so it might be helpful to store the entire container's logs as file. It can be done like this:
54
55
56
+docker logs $(docker ps -a -q --filter "ancestor=deepf/js-docker-isolation-provider:main") > log.txt
57
0 commit comments