- docker-compose.yml에서 deprecated version 필드 제거 - README.md 배포 플로우 설명 개선 - GitHub Actions 경고 메시지 해결 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
8 lines
161 B
YAML
8 lines
161 B
YAML
services:
|
|
nginx:
|
|
image: nginx:alpine
|
|
ports:
|
|
- "8080:80"
|
|
volumes:
|
|
- ./default.conf:/etc/nginx/conf.d/default.conf:ro
|
|
restart: always |