Update: laravel 8 to 12, php 7.3 to php 8.3, Jenkinsfile, Unit/Feature testing, vapor, docker

This commit is contained in:
Dillon Ngo
2026-04-03 06:59:39 +08:00
parent 58de1017d7
commit b34b7c19d6
142 changed files with 3334 additions and 1101 deletions
+7 -7
View File
@@ -1,13 +1,13 @@
version: '3'
networks:
exchange-staging:
exchange-development:
services:
#################################################################
nginx:
image: nginx:stable-alpine
container_name: exchange-ngnix
container_name: exchange-2-ngnix
ports:
- "8082:80"
volumes:
@@ -17,11 +17,11 @@ services:
- php
- mysql
networks:
- exchange-staging
- exchange-development
#################################################################
mysql:
image: mysql:5.7.29
container_name: exchange-mysql
container_name: exchange-2-mysql
restart: unless-stopped
tty: true
ports:
@@ -36,20 +36,20 @@ services:
volumes:
- mysql-data:/var/lib/mysql
networks:
- exchange-staging
- exchange-development
#################################################################
php:
build:
context: .
dockerfile: Dockerfile
container_name: exchange-php
container_name: exchange-2-php
volumes:
- ../:/var/www/html
- ./php/default.conf:/usr/local/etc/php-fpm.d/zz-docker.conf
ports:
- "9002:9000"
networks:
- exchange-staging
- exchange-development
#################################################################
volumes: