a505415898
- Rippy UI auf Port 80 - Git Sync in Arcane - Alle Container healthy
15 lines
245 B
Bash
15 lines
245 B
Bash
#!/bin/bash
|
|
# Setup Rippy auf Arcane VM
|
|
|
|
cd /home/arcane/projects
|
|
|
|
# Verzeichnis erstellen
|
|
mkdir -p rippy
|
|
cd rippy
|
|
|
|
# Dateien von Host kopieren
|
|
scp -r arcane@192.168.178.1:/"Coding Stuff/rippy"/* .
|
|
|
|
# Docker Compose starten
|
|
docker compose up -d
|