Files
AFC-Demo/docker-compose.yml
T

21 lines
461 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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