Files
Axia4/docker-compose.yml
2026-01-25 22:30:05 +01:00

15 lines
394 B
YAML

services:
axia4-web:
image: ghcr.io/axia4/axia4:main
container_name: axia4-app
ports:
- "882:80"
volumes:
# Mount the DATA directory for persistent storage
- ./DATA:/DATA
# Optional: Mount the application code for development
# - ./public_html:/var/www/html
environment:
- APACHE_DOCUMENT_ROOT=/var/www/html
restart: unless-stopped