all
Some checks failed
Publish Docker Image / build-and-push (push) Failing after 2m13s

This commit is contained in:
Sam Kintop
2026-04-30 09:44:02 -05:00
parent 0a30837e3d
commit bf3870ccca
111 changed files with 8383 additions and 0 deletions

32
dev/compose.yaml Normal file
View File

@@ -0,0 +1,32 @@
name: "mclogs"
services:
web:
build:
context: ..
dockerfile: ./Dockerfile
environment:
- MCLOGS_WORKER_REQUESTS=1
- FRANKENPHP_WORKERS=4
ports:
- "80:80"
volumes:
- ../:/app
- ./dev.ini:/usr/local/etc/php/conf.d/dev.ini
user: root
depends_on:
mongo:
condition: service_healthy
mongo:
image: mongo
volumes:
- mongo:/data/db
healthcheck:
test: [ "CMD", "mongosh", "--eval", "db.adminCommand('ping')" ]
interval: 5s
timeout: 5s
retries: 5
start_period: 10s
volumes:
mongo:

7
dev/dev.ini Normal file
View File

@@ -0,0 +1,7 @@
opcache.enable=1
opcache.enable_cli=1
opcache.validate_timestamps=1
opcache.revalidate_freq=0
opcache.jit=off