DevOps
YAML Studio
Infrastructure Config Manager
Viz
JSON
Lint
Diff
Original (A)
version: '3' services: web: image: nginx:1.19 ports: - "80:80"
Modified (B)
version: '3' services: web: image: nginx:latest # Changed tag ports: - "80:80" - "443:443" # Added SSL
Differences