Files
AFC-Demo/docker-compose.yml
T

16 lines
303 B
YAML
Raw Normal View History

version: "3.9"
services:
app:
build:
context: .
dockerfile: Dockerfile
container_name: laravel_app
restart: unless-stopped
ports:
2025-10-23 10:28:00 +02:00
- "81:80" # host:container
volumes:
2025-10-23 11:17:17 +02:00
- .env:/var/www/html/.env
- ./database/:/var/www/html/database/