Manifest.yml

1 개요[ | ]

manifest.yml
  • Cloud Foundry 앱 설정 파일
  • 이 파일이 있는 폴더에서 cf push 가능

2 예시[ | ]

  • 예시 1
---
applications:
- name: spring-music
  memory: 512M
  instances: 1
  random-route: true
  path: build/libs/spring-music.war
  • 예시 2
---
applications:
- name: phpmyadmin-cfready
  memory: 1G
  instances: 1
  host: jmnote-phpmyadmin
  services:
    - testuser03db
→ testuser03db 서비스 연결
  • 예시 3
---
applications:
- name: hello
  host: hello-${random-word}
  memory: 512M
  instances: 1
  path: build/libs/hello-0.0.1-SNAPSHOT.jar
  timeout: 180
→ 랜덤 서브도메인 사용
→ 데이터 임포트 제한시간 180초
---
applications:
- name: phpredisadmin
  memory: 128M 
  buildpack: https://github.com/cloudfoundry/php-buildpack.git
  host: redis-hello

3 같이 보기[ | ]

4 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}