Ein Sumor Cloud-Tool.
Mehr Dokumentation
ssh-docker ist ein Docker-Tool für @sumor/ssh-tools
npm i @sumor/ssh-docker --save
Node.JS Version 18.x oder höher erforderlich
Da dieses Paket in ES-Modul geschrieben ist,
ändern Sie bitte den folgenden Code in Ihrer package.json
-Datei:
{
"type": "module"
}
import SSHBasic from '@sumor/ssh-tools'
import docker from '@sumor/ssh-docker'
class SSH extends SSHBasic {
constructor(config) {
super(config)
this.addTool('docker', docker)
}
}
export default SSH
import SSH from './ssh.js'
const ssh = new SSH(server)
await ssh.connect()
// Docker-Image erstellen
const sourceFolder = '/Pfad/zum/Quellverzeichnis'
const imageName = 'Image-Name'
const version = '1.0.0'
await ssh.docker.buildImage(sourceFolder, imageName, version)
// Bilderliste
const images = await ssh.docker.images()
// Existierendes Bild
const exists = await ssh.docker.existsImage(imageName, version)
// Docker-Container ausführen
await ssh.docker.run({
name: 'Container-Name',
image: imageName,
version: version,
ports: [
{
from: 443, // Container-Port
to: 30123 // Host-Port
}
],
bindings: [
{
from: '/usr/source/config', // Container-Verzeichnis
to: '/Pfad/zum/Konfigurationsverzeichnis', // Host-Verzeichnis
readOnly: true // optional, Standard ist falsch
}
]
})
// Docker-Containerliste
const containers = await ssh.docker.containers()
// Existierender Container
const exists = await ssh.docker.exists('Container-Name')
// Befehl im Container ausführen
const result = await ssh.docker.exec('Container-Name', 'ls -al')
// Docker-Container löschen
await ssh.docker.remove('Container-Name')
// Docker-Image löschen
await ssh.docker.removeImage(imageName, version)
// Node.js-Projekt erstellen
const logs = await ssh.docker.buildNode('/Pfad/zum/Quellverzeichnis')
// Node.js-Projekt ausführen
const logs = await ssh.docker.runNode('Container-Name', '/Pfad/zum/Quellverzeichnis', {
port
})
// Nginx ausführen
const logs = await ssh.docker.runNginx({
name: 'Container-Name',
ports: [
{
from: 443, // Container-Port
to: 30123 // Host-Port
}
],
bindings: [
{
from: '/usr/source/config', // Container-Verzeichnis
to: '/Pfad/zum/Konfigurationsverzeichnis', // Host-Verzeichnis
readOnly: true // optional, Standard ist falsch
}
]
})
// Nginx-Konfiguration aktualisieren
await ssh.docker.updateNginx(dockerId)
// Website ausführen
await ssh.docker.runSite({
workerProcesses: 2,
workerConnections: 2048,
port: 30100,
domains: [
{
domain: 'dev.example.com',
servers: [
{
host: 'dev.example.com',
port: 30001,
maxFails: 3,
maxConns: 5
},
{
host: 'dev.example.com',
port: 30002,
weight: 1
}
]
}
]
})
await ssh.disconnect()