Files
jmespath-playground/compose.yaml
Slawomir Koszewski db3b6beaa3 Modernize Docker Compose configuration
- Replace docker-compose.yml with compose.yaml (modern standard)
- Remove obsolete 'version' field (deprecated in Docker Compose)
- Remove development service configuration
- Add proper image tagging with skoszewski/jmespath-playground
- Keep build context for local development flexibility
- Simplify to production-only service configuration
2026-01-18 16:01:18 +01:00

9 lines
191 B
YAML

services:
jmespath-playground:
build: .
image: skoszewski/jmespath-playground
ports:
- "3000:3000"
environment:
- NODE_ENV=production
restart: unless-stopped