anybody with more experience in CircleCI? could it be that
bash
isn’t installed?
y
yschimke
08/05/2019, 1:11 PM
Looks like pg_ctl from postgres
yschimke
08/05/2019, 1:11 PM
Are you specifying a docker image base that has postgres installed?
m
Manuel Lorenzo
08/05/2019, 1:12 PM
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:
Manuel Lorenzo
08/05/2019, 1:17 PM
this is my first time using Docker…
y
yschimke
08/05/2019, 3:37 PM
I don’t think you can have 2 images. Try just the Postgres one and hope it has java 8?