Error 404 while running the minimum set of archive services on a single host

69 views
Skip to first unread message

Demian SP DigiHealth

unread,
Jul 18, 2023, 6:22:56 AM7/18/23
to dcm4che
Dear DCM4CHEE Group, 


Since I am trying to run a DICOM Server using Docker-compose because of my operative system is Windows, I have encountered a continuous problem when navigating  into my http://localhost:8080/dcm4chee-arc/ui2/.  No matter which option I choose, the response from the servers is 404.

I followed the mandatory instructions for docker-compose  as are indicated in https://github.com/dcm4che/dcm4chee-arc-light/wiki/Run-minimum-set-of-archive-services-on-a-single-host.  

This is my content from my docker-compose.yml

version: "3"  

services:
  ldap:
    image: dcm4che/slapd-dcm4chee:2.6.3-30.0
    logging:
      driver: json-file
      options:
        max-size: "10m"
    ports:
      - "389:389"
    env_file: docker-compose.env
    volumes:
      - /var/local/dcm4chee-arc/ldap:/var/lib/openldap/openldap-data
      - /var/local/dcm4chee-arc/slapd.d:/etc/openldap/slapd.d  
  db:
    image: dcm4che/postgres-dcm4chee:15.2-30
    logging:
      driver: json-file
      options:
        max-size: "10m"
    ports:
      - "5432:5432"
    env_file: docker-compose.env
    volumes:
      - /etc/localtime:/etc/localtime:ro
      - /etc/timezone:/etc/timezone:ro
      - /var/local/dcm4chee-arc/db:/var/lib/postgresql/data
  arc:
    image: dcm4che/dcm4chee-arc-psql:5.30.0
    logging:
      driver: json-file
      options:
        max-size: "10m"
    ports:
      - "8080:8080"
      - "8443:8443"
      - "9990:9990"
      - "9993:9993"
      - "11112:11112"
      - "2762:2762"
      - "2575:2575"
      - "12575:12575"
    env_file: docker-compose.env
    environment:
      WILDFLY_CHOWN: /opt/wildfly/standalone /storage
      WILDFLY_WAIT_FOR: ldap:389 db:5432
    depends_on:
      - ldap
      - db
    volumes:
      - /etc/localtime:/etc/localtime:ro
      - /etc/timezone:/etc/timezone:ro
      - /var/local/dcm4chee-arc/wildfly:/opt/wildfly/standalone
      - /var/local/dcm4chee-arc/storage:/storage
    security_opt:
      - seccomp:unconfined

and the docker-compose.env

STORAGE_DIR=/storage/fs1
POSTGRES_DB=pacsdb
POSTGRES_USER=pacs
POSTGRES_PASSWORD=pacs

     

I will appreciate your advice to understand why I am having this problem.


Kind Regards.
Demian SP 




dcm-issue.PNG



Reply all
Reply to author
Forward
0 new messages