9e73d065f9
- DockerfileWorker: abcde, flac, ffmpeg, handbrake-cli installiert - ripping.py: Ripping-Module für DVD/Blu-ray mit HandBrake - tasks.py: Disc-Typ-Erkennung + passendes Ripping-Modul - docker-compose.yml: Output-Verzeichnis /output hinzugefügt - output/ Verzeichnis erstellt WIP: CD-Ripping mit abcde noch nicht implementiert
27 lines
706 B
Bash
27 lines
706 B
Bash
ENCRYPTION_KEY=$(openssl rand -hex 32)
|
|
JWT_SECRET=$(openssl rand -hex 32)
|
|
cat > /home/arcane/docker-compose.yml << EOF
|
|
version: '3.8'
|
|
services:
|
|
arcane:
|
|
image: ghcr.io/getarcaneapp/manager:latest
|
|
container_name: arcane
|
|
ports:
|
|
- '3552:3552'
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- arcane-data:/app/data
|
|
- /home/arcane/projects:/app/data/projects
|
|
environment:
|
|
- PROJECTS_DIRECTORY=/app/data/projects
|
|
- APP_URL=http://192.168.178.162:3552
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- ENCRYPTION_KEY=$ENCRYPTION_KEY
|
|
- JWT_SECRET=$JWT_SECRET
|
|
restart: unless-stopped
|
|
volumes:
|
|
arcane-data:
|
|
EOF
|
|
cat /home/arcane/docker-compose.yml
|