Toal series of DICOM filee are not sending from local orthanc to other orthanc

Hello

I am tring to send series of DICOM files from local orthanc server to an other orthanc server that running at live then some series are not sending.

I am using Osimis orthanc Running with Docker from the following link

https://bitbucket.org/snippets/osimis/eynLn

How to fix this problem?

I would first recommend you to enable debug logs on Orthanc so you might have a first idea of what’s happening.

For this, update your docker-compose.yml file with:

After update my docker-compose.yml file is:

version: "2"
services:
        orthanc:
                build: orthanc
                depends_on: [orthanc-index]
                restart: unless-stopped
                ports: ["104:4242", "80:8042"]
                volumes: ["orthanc-storage:/var/lib/orthanc/db:Z"]
     entrypoint:
                        - Orthanc
                        - --verbose
                        - /etc/orthanc/
        orthanc-index:
                image: postgres
                restart: unless-stopped
                volumes: ["orthanc-index:/var/lib/postgresql/data:Z"]
volumes:
        orthanc-storage:
        orthanc-index:

When is run the following command 'docker-compose up --build -d' it is generating following error:

yaml.scanner.ScannerError: while scanning for the next token
found character '\t' that cannot start any token
  in "./docker-compose.yml", line 9, column 2

\t is a conventional representation of the ASCII TAB character. YAML
forbids them; expand your tabs into spaces instead.