Files
AFC-Demo/docker-compose.yml
T

21 lines
461 B
YAML
Raw Normal View History

version: "3.9"
services:
app:
image: tap:latest # or build: . if youre building locally
build:
context: .
dockerfile: Dockerfile
container_name: laravel_app
restart: unless-stopped
ports:
- "81:8080" # host:container
environment:
# --- Laravel Core ---
APP_NAME: "Laravel"
volumes:
# - SQLite database file
- ./database:/var/www/html/database