Docker-Compose error on startup

New to Gitlab docker installation.
Has anyone seen this error when using docker-compose?
— docker-compose.yml —
web:
image: ‘gitlab/gitlab-ee:latest’
restart: always
hostname: ‘ncte202714.ncte.navy.local’
environment:
GITLAB_OMNIBUS_CONFIG: |
external_url ‘https://ncte202714.ncte.navy.local:8929
gitlab_rails[‘gitlab_shell_ssh_port’] = 2224
ports:
- ‘8929:8929’
- ‘2224:22’
volumes:
- ‘/usr/ncte/gitlab/gitlab-storage/config:/etc/gitlab’
- ‘/usr/ncte/gitlab/gitlab-storage/logs:/var/log/gitlab’
- ‘/usr/ncte/gitlab/gitlab-storage/data:/var/opt/gitlab’
— END —

web_1 | ±—[SHA256]-----+
web_1 | Preparing services…
web_1 | Starting services…
web_1 | Configuring GitLab…
web_1 | /opt/gitlab/embedded/bin/runsvdir-start: line 37: /proc/sys/fs/file-max: Read-only file system
web_1 | /opt/gitlab/embedded/lib/ruby/gems/2.7.0/gems/chef-config-15.14.0/lib/chef-config/config.rb:1226:in fips_mode=': This version of OpenSSL does not support FIPS mode (OpenSSL::OpenSSLError) web_1 | from /opt/gitlab/embedded/lib/ruby/gems/2.7.0/gems/chef-config-15.14.0/lib/chef-config/config.rb:1226:in enable_fips_mode’
web_1 | from /opt/gitlab/embedded/lib/ruby/gems/2.7.0/gems/chef-config-15.14.0/lib/chef-config/config.rb:685:in init_openssl' web_1 | from /opt/gitlab/embedded/lib/ruby/gems/2.7.0/gems/chef-15.14.0/lib/chef/application.rb:101:in configure_chef’
web_1 | from /opt/gitlab/embedded/lib/ruby/gems/2.7.0/gems/chef-15.14.0/lib/chef/application.rb:56:in reconfigure' web_1 | from /opt/gitlab/embedded/lib/ruby/gems/2.7.0/gems/chef-15.14.0/lib/chef/application/client.rb:69:in reconfigure’
web_1 | from /opt/gitlab/embedded/lib/ruby/gems/2.7.0/gems/chef-15.14.0/lib/chef/application.rb:65:in run' web_1 | from /opt/gitlab/embedded/lib/ruby/gems/2.7.0/gems/chef-bin-15.14.0/bin/chef-client:25:in <top (required)>’
web_1 | from /opt/gitlab/embedded/bin/chef-client:23:in load' web_1 | from /opt/gitlab/embedded/bin/chef-client:23:in

Thanks for taking the time to be thorough in your request, it really helps! :blush:

Found the solution:

Added CHEF_FIPS: “” to environment (see below)

version: “3.8”
services:
web:
image: ‘gitlab/gitlab-ce:13.8.1-ce.0’
restart: always
hostname: ‘ncte202714.ncte.navy.local’
environment:
GITLAB_OMNIBUS_CONFIG: |
external_url ‘http://ncte202714.ncte.navy.local
# Add any other gitlab.rb configuration here, each on its own line
CHEF_FIPS: “”
ports:
- ‘80:80’
- ‘443:443’
- ‘2222:22’
volumes:
- ‘/usr/app/gitlab/gitlab-storage/config:/etc/gitlab’
- ‘/usr/app/gitlab/gitlab-storage/logs:/var/log/gitlab’
- ‘/usr/app/gitlab/gitlab-storage/data:/var/opt/gitlab’