All checks were successful
continuous-integration/drone/push Build is passing
Co-authored-by: aovantsev <aovantsev@avito.ru> Reviewed-on: #3
11 lines
257 B
Bash
Executable File
11 lines
257 B
Bash
Executable File
#!/bin/bash
|
|
# Staging environment script
|
|
|
|
echo "🚀 Starting Counter app in staging mode..."
|
|
|
|
# Set environment
|
|
export ENVIRONMENT=staging
|
|
|
|
# Start with staging configuration
|
|
docker-compose -f docker-compose.yml -f docker-compose.staging.yml up --build -d
|