Point Docker and Coolify compose to the Laravel rebuild app so mahasiswa, dosen, and admin flows are served from the new Laravel public entrypoint.
16 lines
247 B
YAML
16 lines
247 B
YAML
services:
|
|
app:
|
|
ports:
|
|
- "${APP_PORT:-8080}:80"
|
|
volumes:
|
|
- ./rebuild/storage:/var/www/html/storage
|
|
|
|
db:
|
|
ports:
|
|
- "${DB_PORT:-3307}:3306"
|
|
volumes:
|
|
- db_data_local:/var/lib/mysql
|
|
|
|
volumes:
|
|
db_data_local:
|