version: '3.8' services: mobile-frontend: image: nginx:alpine container_name: buchhaltung-mobile ports: - "8081:80" # Oder 443 für HTTPS später volumes: - ./public:/usr/share/nginx/html:ro - ./nginx-config.conf:/etc/nginx/conf.d/default.conf:ro restart: unless-stopped # Für HTTPS später: # environment: # - VIRTUAL_HOST=mobile.taeger-it.de # - LETSENCRYPT_HOST=mobile.taeger-it.de