🐳 Compose Diff
Docker Compose Files
📄 Original
version: '3.8' services: web: image: nginx:1.24 ports: - "80:80" volumes: - ./html:/usr/share/nginx/html db: image: postgres:15 environment: POSTGRES_DB: mydb volumes: - pgdata:/var/lib/postgresql/data redis: image: redis:7-alpine ports: - "6379:6379" volumes: pgdata:
📄 Modified
version: '3.8' services: web: image: nginx:1.25 ports: - "80:80" - "443:443" volumes: - ./html:/usr/share/nginx/html db: image: postgres:16 environment: POSTGRES_DB: mydb POSTGRES_USER: admin volumes: - pgdata:/var/lib/postgresql/data worker: image: node:20-alpine command: npm run worker volumes: pgdata:
🔍 Compare
Changes