Updated Docker (markdown)

Karmaa
2024-12-08 14:53:08 -06:00
parent 078be575dc
commit fd11230080

@@ -1 +1,22 @@
Test
> [!WARNING]
> Currently only a ```linux/amd64``` tag is present. This will be updated soon.
# Docker Command Line
```bash
docker run -d \
-p 8080:8080 \
--name termix-app \
--restart unless-stopped \
ghcr.io/lukegus/ssh-project:latest
```
# Docker Compose
```yaml
services:
app:
image: ghcr.io/lukegus/ssh-project:release-1.0-development-latest
container_name: termix-app
restart: unless-stopped
ports:
- "8080:8080" # Port for nginx web-app (frontend)
# - "8081:8081" # Port for SSH WebSocket, does not need to be open (backend)