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