FIX: forgot to change src to app in docker-compose

This commit is contained in:
2023-02-14 20:40:27 -03:00
parent a576f3b0d0
commit b9d5c6c3f5

View File

@ -10,7 +10,7 @@ services:
- "${WEB_PORT:-8030}:80"
volumes:
- "./nginx.conf:/etc/nginx/conf.d/default.conf"
- "./src:/app"
- "./app:/app"
- "./logs:/logs"
php:
@ -19,5 +19,5 @@ services:
- app
build: .
volumes:
- "./src:/app"
- "./app:/app"
- "./logs:/logs"