- Add package.json dependencies: jquery, jquery-ui, moment, daterangepicker, wavesurfer.js, air-datepicker - Create scripts/setup-vendor.js to copy npm packages to public/assets/vendor - Update view templates to use vendor paths instead of old /js/ or CDN URLs - Clean up legacy commented-out scripts in master layout
30 lines
522 B
YAML
30 lines
522 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
web:
|
|
build:
|
|
context: ./
|
|
dockerfile: Dockerfile.dev
|
|
ports:
|
|
- 8080:80
|
|
- 8443:443
|
|
volumes:
|
|
- .:/var/www/html
|
|
- ./srv:/srv
|
|
db:
|
|
image: mysql:5.5
|
|
ports:
|
|
- "3306:3306"
|
|
expose:
|
|
- "3306"
|
|
environment:
|
|
MYSQL_ROOT_PASSWORD: development-password
|
|
MYSQL_DATABASE: forge
|
|
MYSQL_USER: forge
|
|
MYSQL_PASSWORD: secret
|
|
mailpit:
|
|
image: axllent/mailpit:latest
|
|
ports:
|
|
- "8025:8025"
|
|
- "1025:1025"
|