anybody with more experience in CircleCI? could it...
# ktor
m
anybody with more experience in CircleCI? could it be that
bash
isn’t installed?
y
Looks like pg_ctl from postgres
Are you specifying a docker image base that has postgres installed?
m
I have this:
Copy code
version: 2
jobs:
  build:
    docker:
      # specify the version you desire here
      - image: circleci/openjdk:8-jdk

      # Specify service dependencies here if necessary
      # CircleCI maintains a library of pre-built images
      # documented at <https://circleci.com/docs/2.0/circleci-images/>
      - image: circleci/postgres:9.6.5-alpine-ram
        environment:
this is my first time using Docker…
y
I don’t think you can have 2 images. Try just the Postgres one and hope it has java 8?