fix: local compose file

This commit is contained in:
2025-05-21 16:39:40 -05:00
parent bd92480958
commit 9eb7079ea6

View File

@@ -13,10 +13,9 @@ services:
- $PWD/bash/certs:/etc/ssl
web:
# build:
# dockerfile: docker/Dockerfile.web
# context: .
image: code.caldwell.digital/home/torsearch-web:latest
build:
dockerfile: docker/Dockerfile.web
context: .
depends_on:
app:
condition: service_healthy
@@ -29,10 +28,9 @@ services:
restart: unless-stopped
app:
# build:
# dockerfile: docker/Dockerfile.app
# context: .
image: code.caldwell.digital/home/torsearch-app:latest
build:
dockerfile: docker/Dockerfile.app
context: .
volumes:
- ./:/var/www
depends_on:
@@ -55,11 +53,13 @@ services:
condition: service_healthy
scheduler:
image: code.caldwell.digital/home/torsearch:0.14.5-worker
build:
dockerfile: docker/Dockerfile.scheduler
context: .
volumes:
- ./:/var/www
- ./var/download:/var/download
command: php ./bin/console messenger:consume scheduler_monitor -vv --time-limit=3600
command: -vv --time-limit=3600
depends_on:
app:
condition: service_healthy