Rename docker-compose.yml to compose.yml

- Use modern Compose file naming convention
- Remove deprecated version specification
- Update command example to use 'docker compose'

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-02-02 19:33:38 +09:00
parent 4e069f39ed
commit f0674365b3

View File

@@ -1,5 +1,3 @@
version: '3.8'
services: services:
security-lint: security-lint:
build: build:
@@ -10,4 +8,4 @@ services:
# Mount the target directory as read-only # Mount the target directory as read-only
- ${TARGET_PATH:-.}:/target:ro - ${TARGET_PATH:-.}:/target:ro
# Default command can be overridden # Default command can be overridden
# Example: docker-compose run --rm security-lint /target/app -s high # Example: docker compose run --rm security-lint /target/app -s high