Files
mainty/docker-compose.yml
2025-12-27 12:06:55 -08:00

14 lines
314 B
YAML

services:
mainty:
build: .
container_name: mainty-app
ports:
- "8080:80"
volumes:
- ./data:/var/www/html/data
# Uncomment below to sync code changes in development
# - .:/var/www/html
environment:
- APACHE_DOCUMENT_ROOT=/var/www/html
restart: unless-stopped