Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Passing Task Outputs to Task Inputs Files not found #181

Open
FilBot3 opened this issue Jan 14, 2019 · 1 comment
Open

Passing Task Outputs to Task Inputs Files not found #181

FilBot3 opened this issue Jan 14, 2019 · 1 comment

Comments

@FilBot3
Copy link

FilBot3 commented Jan 14, 2019

While following the Passing Task Outputs to Task Inputs tutorial, I am getting the error

files not found

After the image pulls down and inputs are copied to the container. From what I'm seeing, the file should be right where the tutorial is saying it is. All of the other examples have worked up until this point.

version: '3'
services:
  concourse-db:
    # https://hub.docker.com/_/postgres/
    image: postgres:11
    environment:
      - "POSTGRES_DB=concourse"
      - "POSTGRES_PASSWORD=concourse_pass"
      - "POSTGRES_USER=concourse_user"
      - "PGDATA=/database"
  concourse:
    # https://hub.docker.com/r/concourse/concourse/
    image: concourse/concourse:4.2.2
    command: quickstart
    privileged: true
    depends_on:
      - "concourse-db"
    ports:
      - "8080:8080"
    environment:
      - "CONCOURSE_POSTGRES_HOST=concourse-db"
      - "CONCOURSE_POSTGRES_USER=concourse_user"
      - "CONCOURSE_POSTGRES_PASSWORD=concourse_pass"
      - "CONCOURSE_POSTGRES_DATABASE=concourse"
      - "CONCOURSE_EXTERNAL_URL=https://mycomputer.company.net"
      - "CONCOURSE_ADD_LOCAL_USER=test:$$2a$$10$$0W9/ilCpYXY/yCPpaOD.6eCrGda/fnH3D4lhsw1Mze0WTID5BuiTW"
      - "CONCOURSE_MAIN_TEAM_ALLOW_ALL_USERS=true"
      - "CONCOURSE_WORKER_GARDEN_NETWORK"

Just using the docker-compose.yml from the concourse/concourse-docker repo.

@FilBot3
Copy link
Author

FilBot3 commented Jan 14, 2019

screen shot 2019-01-14 at 4 18 22 pm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant