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