mirror of
https://github.com/michaelstaake/mainty.git
synced 2026-04-16 11:30:13 +00:00
14 lines
314 B
YAML
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
|