coolify/docker/development/etc/s6-overlay/s6-rc.d/init-setup/up

23 lines
273 B
Text
Raw Normal View History

2023-12-13 10:12:53 +00:00
#!/command/execlineb -P
2024-12-10 09:46:05 +00:00
# Use with-contenv to ensure environment variables are available
with-contenv
cd /var/www/html
foreground {
composer
install
}
foreground {
php
artisan
migrate
--step
}
foreground {
php
artisan
dev
--init
}
2023-12-13 10:35:53 +00:00