Feature Branch Setup: GitHub Actions für Feature Branches, Docker Compose für Testing, Dokumentation

This commit is contained in:
vibe-bot 2025-08-09 02:03:06 +02:00
parent a5a4543ac0
commit e2c523ca32
5 changed files with 400 additions and 1 deletions

View file

@ -0,0 +1,23 @@
version: '3.8'
services:
app-feature:
image: flex420/discordsoundbot-vib:feature/css-experiments
container_name: jukebox-feature
restart: unless-stopped
ports:
- "3001:3000" # Anderer Port für Feature Testing
environment:
- DISCORD_TOKEN=${DISCORD_TOKEN}
- CLIENT_ID=${CLIENT_ID}
- GUILD_ID=${GUILD_ID}
- ADMIN_PWD=${ADMIN_PWD}
volumes:
- ./data/sounds:/data/sounds
- ./data/uploads:/data/uploads
networks:
- jukebox-network
networks:
jukebox-network:
driver: bridge