docker-compose.yml 327 B

1234567891011121314
  1. # PERF-035: Removed deprecated 'version' key (Docker Compose v2+ ignores it)
  2. services:
  3. markdown-viewer:
  4. build:
  5. context: .
  6. dockerfile: Dockerfile
  7. ports:
  8. - "8080:80"
  9. container_name: markdown-plusplus
  10. restart: unless-stopped
  11. environment:
  12. - NGINX_HOST=localhost
  13. - NGINX_PORT=80