diff --git a/Docker.md b/Docker.md index 8318c86..ad58982 100644 --- a/Docker.md +++ b/Docker.md @@ -1 +1,22 @@ -Test \ No newline at end of file +> [!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) \ No newline at end of file