eliezedeck
05/14/2018, 5:42 PMnilan
05/14/2018, 9:11 PMeliezedeck
05/15/2018, 2:59 AMeliezedeck
05/15/2018, 3:00 AMeliezedeck
05/15/2018, 1:07 PMeliezedeck
05/19/2018, 12:36 AMdocker-compose up -d
command finished without any problem, but I the prisma server itself isn't able to run; here is the log of the container:
elie@orangepiplus2e:~/hello-world-postgres$ docker logs hello-world-postgres_prisma_1
standard_init_linux.go:190: exec user process caused "exec format error"
eliezedeck
05/19/2018, 12:39 AMexec format error
eliezedeck
05/19/2018, 12:51 AManapsix/alpine-java
does not support true architecture neutrality, and is always shipping x86 binaries regardless of architecture.
elie@orangepiplus2e:~/hello-world-postgres$ docker run -it --rm anapsix/alpine-java java -version
Unable to find image 'anapsix/alpine-java:latest' locally
latest: Pulling from anapsix/alpine-java
ff3a5c916c92: Already exists
b2573fe715ab: Already exists
Digest: sha256:f4271069aa69eeb4cfed50b6a61fb7e4060297511098a3605232dbfe8f85de74
Status: Downloaded newer image for anapsix/alpine-java:latest
standard_init_linux.go:190: exec user process caused "exec format error"
eliezedeck
05/19/2018, 1:13 AMeliezedeck
05/21/2018, 3:21 AMelie@orangepiplus2e:~/hello-world-postgres$ docker cp prisma-browsing:/bin/bash .
elie@orangepiplus2e:~/hello-world-postgres$ ls -l
total 712
-rwxr-xr-x 1 elie elie 714912 Feb 7 19:18 bash
-rw-r--r-- 1 elie elie 48 May 19 00:25 datamodel.graphql
-rw-r--r-- 1 elie elie 752 May 19 00:25 docker-compose.yml
-rw-r--r-- 1 elie elie 60 May 19 00:25 prisma.yml
elie@orangepiplus2e:~/hello-world-postgres$ file bash
bash: ELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib/ld-musl-x86_64.so.1, stripped
eliezedeck
05/21/2018, 3:23 AMprisma-browsing
container is based on prismagraphql/prisma:1.8
image:
elie@orangepiplus2e:~/hello-world-postgres$ docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
466c3b195507 prismagraphql/prisma:1.8 "/bin/sh -c /app/sta…" 7 minutes ago Exited (1) 7 minutes ago prisma-browsing
eliezedeck
05/21/2018, 11:17 AM