Feature Branch Setup: GitHub Actions für Feature Branches, Docker Compose für Testing, Dokumentation
This commit is contained in:
parent
a5a4543ac0
commit
e2c523ca32
5 changed files with 400 additions and 1 deletions
23
docker-compose.feature.yml
Normal file
23
docker-compose.feature.yml
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue