Added the debugging to full ocis docker example

This commit is contained in:
Roman Perekhod
2024-07-22 13:26:30 +02:00
parent 379649f495
commit 54524567a5
7 changed files with 56 additions and 21 deletions
@@ -0,0 +1,7 @@
---
services:
collaboration:
command: [ "-c", "dlv --listen=:40000 --headless=true --continue --check-go-version=false --api-version=2 --accept-multiclient exec /usr/bin/ocis collaboration server" ]
ports:
- 40001:40000
@@ -0,0 +1,7 @@
---
services:
collaboration-oo:
command: [ "-c", "dlv --listen=:40002 --headless=true --continue --check-go-version=false --api-version=2 --accept-multiclient exec /usr/bin/ocis collaboration server" ]
ports:
- 40002:40002
@@ -0,0 +1,7 @@
---
services:
ocis:
command: [ "-c", "ocis init || true; dlv --listen=:40000 --headless=true --continue --check-go-version=false --api-version=2 --accept-multiclient exec /usr/bin/ocis server" ]
ports:
- 40000:40000