main Initial commit
This commit is contained in:
commit
ac7df91600
65 changed files with 8957 additions and 0 deletions
15
docker/start.sh
Normal file
15
docker/start.sh
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Start script for Docker container
|
||||
|
||||
set -e
|
||||
|
||||
echo "🚀 Starting NGINX Proxy Manager..."
|
||||
|
||||
# Initialize database
|
||||
echo "📊 Initializing database..."
|
||||
cd /app && bun src/database/init.ts
|
||||
|
||||
# Start supervisor (manages nginx and our app)
|
||||
echo "🔧 Starting services..."
|
||||
exec supervisord -c /etc/supervisor/conf.d/supervisord.conf -n
|
||||
Loading…
Add table
Add a link
Reference in a new issue