2

ローカル コンコース インスタンスで実行したい単純なタスクがあります。

build-frontend.yml

---
platform: linux

image_resource:
  type: docker-image
  source:
    repository: node
    tag: 'latest'

inputs:
- name: client-devops

run:
  path: client-devops/scripts/test

タスクが実行されます:

client-devops daka$ fly -t frontend execute --config build-frontend.yml
executing build 1
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0curl: (7) Failed to connect to localhost port 8080: Connection refused
gzip: invalid magic
tar: Child returned status 1
tar: Error is not recoverable: exiting now
exit status 2

ターゲットは利用可能です:

client-devops daka$ fly targets
name          url                         expiry                       
frontend      http://127.0.0.1:8080       Fri, 11 Nov 2016 09:13:55 UTC

ブラウザから UI に接続できますが、localhost に接続できないと表示されるのはなぜですか?

4

1 に答える 1

1

localhost外部 URL をorとして構成することはできません127.0.0.1。他のマシンからアクセスできる必要があります。

于 2016-11-10T18:10:10.940 に答える