Improvements to Readme and Docker Compose

This commit is contained in:
Michael Staake
2025-12-27 12:06:55 -08:00
parent 90e076d94c
commit 4b6315ce6b
3 changed files with 7 additions and 10 deletions

View File

@@ -126,8 +126,6 @@ For production:
Example production `docker-compose.yml`:
```yaml
version: '3.8'
services:
mainty:
build: .
@@ -136,12 +134,9 @@ services:
- "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: always
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
restart: unless-stopped
```