fix: uses new base image for app

This commit is contained in:
2025-05-21 23:52:04 -05:00
parent 64b7d4c963
commit 565481aa5a
6 changed files with 20 additions and 36 deletions

View File

@@ -12,14 +12,6 @@ services:
- $PWD/bash/caddy:/etc/caddy
- $PWD/bash/certs:/etc/ssl
web:
build:
dockerfile: docker/Dockerfile.web
context: .
depends_on:
app:
condition: service_healthy
redis:
image: redis:latest
volumes:
@@ -31,8 +23,11 @@ services:
build:
dockerfile: docker/Dockerfile.app
context: .
ports:
- "8001:80"
volumes:
- ./:/var/www
- ./bash/nginx.conf:/etc/nginx/conf.d/site.conf
depends_on:
database:
condition: service_healthy