usaybia / srophe-docker

Docker image builder for the Srophe software. Based on the eXist-db Docker image.
GNU General Public License v3.0
0 stars 0 forks source link

Where to access running exist container? #1

Closed nathangibson closed 3 years ago

nathangibson commented 3 years ago

Hi @wsalesky

This docker image builds without any errors on my local machine. Yay! But although docker shows it as running and healthy on ports 8080/tcp, 8443/tcp, I can't get to it in my browser at localhost:8080 etc. Does this involve a network setting for docker? Or is it possibly related to this error message in the log:

WARN (Descriptor.java [<init>]:116) - Giving up unable to read descriptor.xml file from classloader in package org.exist.http, eXist-db Core, version 5.2

Or perhaps to this line in the docker-compose? https://github.com/usaybia/srophe-docker/blob/master/docker-compose.yml#L10

related: usaybia/srophe-eXist-app/issues/43

wsalesky commented 3 years ago

@nathangibson run docker ps -a to see all running containers, it should give you the urls and ports.

nathangibson commented 3 years ago

Oh, duh, I didn't explicitly bind the ports in the run command (thought I didn't need to since they are exposed in the Dockerfile). Thanks!

wsalesky commented 3 years ago

No worries, I'm still learning Docker also and constantly having to look things up or ask questions!