You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Wheras, a sparql client (e.g. YASGUI) can perfectly access the jena-fuseki container throug this URL => POST http://localhost:3030/ds/sparql
The fuseki container logs on receiving from from sparql client:
Hi,
I'm using the official docker image "php:apache" to test the Skomos application (https://github.com/NatLibFi/Skosmos). This php-apache container must have access throug http to another docker container within Jena-Fuseki (https://store.docker.com/community/images/stain/jena-fuseki) running a sparql triplestore server endpoint.
The problem is that php-apache container triggers an error when trying to access the jena-fuseki container throug this URL => GET http://localhost:3030/ds/data/Biodiversite_ark :
The skosmos container logs on making http request:
Wheras, a sparql client (e.g. YASGUI) can perfectly access the jena-fuseki container throug this URL => POST http://localhost:3030/ds/sparql
The fuseki container logs on receiving from from sparql client:
FYI:
`
version: '2'
services:
fuseki:
container_name: fuseki
image: stain/jena-fuseki
ports:
- 3030:3030
environment:
- ADMIN_PASSWORD="pw"
volumes:
- ${PWD}/fuseki:/fuseki
restart: always
skosmos:
container_name: skosmos
links:
- fuseki
build:
context: .
ports:
- 8080:80
volumes:
- ${PWD}/Skosmos:/var/www/html
`
FROM php:apache RUN apt-get update && apt-get install -y locales && \ locale-gen fr_FR.UTF-8 && \ a2enmod rewrite && \ docker-php-ext-install gettext mbstring
PS: here NatLibFi/Skosmos#635 is already discussed this problem from the Skosmos point of view, but seems more Network/socket related...
Thanks.
The text was updated successfully, but these errors were encountered: