This commit is contained in:
Louis Lam 2023-11-07 21:22:49 +08:00
parent 015e4c21f9
commit eb6db8b31e
2 changed files with 2 additions and 3 deletions

View file

@ -22,7 +22,7 @@ A fancy, easy-to-use and reactive docker `compose.yaml` stack manager.
## 🔧 How to Install
1. Create a directory `dockge`
1. Create a `compose.yaml` file inside `dockge` with the following content:
2. Create or download [`compose.yaml`](https://raw.githubusercontent.com/louislam/dockge/master/compose.yaml) and put it inside `dockge`:
```yaml
version: "3.8"
@ -35,8 +35,6 @@ services:
- ./data:/app/data
- /var/run/docker.sock:/var/run/docker.sock
```
2. `cd ./dockge/`
3. `docker-compose up -d`
Dockge is now running on http://localhost:5001

View file

@ -16,6 +16,7 @@ export class DockerSocketHandler extends SocketHandler {
ok: true,
msg: "Deployed",
});
stack.joinCombinedTerminal(socket);
} catch (e) {
callbackError(e, callback);
}