Files
mainty/docker-compose.yml

14 lines
314 B
YAML
Raw Normal View History

2025-11-03 11:04:46 -08:00
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