Files
Advogado/docker-compose.yml
2025-11-09 20:53:28 +00:00

20 lines
321 B
YAML

version: '3.8'
services:
web:
build: .
container_name: php_apache
ports:
- "8080:80"
volumes:
- .:/var/www/html
depends_on:
- redis
redis:
image: redis:alpine
container_name: redis_cache
command: ["redis-server", "--requirepass", ""]
ports:
- "6379:6379"