Updated Docker (markdown)
23
Docker.md
23
Docker.md
@@ -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)
|
||||
Reference in New Issue
Block a user