added bootstar, font awsome, and the project is in a useable state, bit needs some manual setup.

This commit is contained in:
2026-06-13 23:11:54 +02:00
parent 4cf12c378e
commit 9045841645
5886 changed files with 538083 additions and 99 deletions

View File

@@ -8,7 +8,8 @@ services:
- ./:/var/www
- ./default.conf:/etc/nginx/conf.d/default.conf
depends_on:
- php
php:
condition: service_healthy
restart: unless-stopped
php:
@@ -20,6 +21,12 @@ services:
container_name: projectKiln-php
volumes:
- ./:/var/www
healthcheck:
test: ["CMD-SHELL", "php -r 'exit(@fsockopen(\"127.0.0.1\", 9000) ? 0 : 1);'"]
interval: 5s
timeout: 3s
retries: 12
start_period: 5s
restart: unless-stopped
mysql:
@@ -51,5 +58,15 @@ services:
- mysql
restart: unless-stopped
swagger:
image: swaggerapi/swagger-ui
container_name: projectKiln-swagger
ports:
- "5720:8080"
environment:
SWAGGER_JSON_URL: http://localhost:5700/api/openapi.php
depends_on:
- web
restart: unless-stopped
volumes:
mysql_data: