Gitlab: starting container process caused \"exec: \\"/assets/wrapper\\": stat /assets/wrapper: no such file or directory

Hello,

We have a dockerized swarm gitlab setup on-premise. I am seeing this error message when starting the Gitlab service.

Command given: docker service ps swarm_gitlab_swarm-git --no-trunc
Output:
ydr29qdta5isp8fwrc6 _ swarm_gitlab_swarm-git.1 gitlab/gitlab-ce:11.3.5-ce.0@sha256:0dd228803589adc4c8f1f5d5af90097ff8dfa383c6be7e25a haplnxcigit01 Shutdown Failed less than a second ago "starting container failed: oci runtime error: container_linux.go:265: starting container process caused “exec: “/assets/wrapper”: stat /assets/wrapper: no such file or directory”

Docker_compose.yaml

version: ‘3.2’

services:
swarm-git:
image: gitlab/gitlab-ce:11.3.5-ce.0

 volumes:
   - /opt/software/gitlab/config:/etc/gitlab
   - /opt/software/gitlab/logs:/var/log/gitlab
   - /opt/software/gitlab/data:/var/opt/gitlab
   - /opt/software/gitlab/logs/reconfigure:/var/log/gitlab/reconfigure
 command: ["/assets/wrapper"]
 ports:
   - target: 443
     published: 443
     protocol: tcp
     mode: host

   - target: 22
     published: 822
     protocol: tcp
     mode: host

 environment:
   GITLAB_OMNIBUS_CONFIG: |
     external_url 'https://mygit.prod.com'
     nginx['ssl_certificate'] = '/etc/gitlab/ssl/mygit.prod.com.crt'
     nginx['ssl_certificate_key'] = '/etc/gitlab/ssl/mygit.prod.com.key'
 deploy:
   placement:
     constraints: [node.hostname == happlnxcigit01]
   replicas: 1
   resources:
     limits:
       memory: 8192M
   restart_policy:
     condition: on-failure
     delay: 60s
     max_attempts: 5
     window: 240s

 networks:
   gitlabnet:

I can provide additional details.