Jump to content

Linux Docker: Failed to create CoreCLR, HRESULT: 0x80004005


Go to solution Solved by CalEvans,

Recommended Posts

Posted


Embyserver Docker has stopped running after a system crash.

My docker-composer.yml is:

version: "3.7"
services:
  emby:
    image: emby/embyserver
    container_name: embyserver
#    network_mode: host # Enable DLNA and Wake-on-Lan
    environment:
      - UID=1000 # The UID to run emby as (default: 2)
      - GID=1000 # The GID to run emby as (default 2)
      - TZ="America/New_York"
    volumes:
      - /opt/docker/emby/config:/config # Configuration directory
      - /mnt/alexandria/emby/data/tvshows:/mnt/tvshows # Media directory
      - /mnt/alexandria/emby/data/movies/:/mnt/movies # Media directory
      - /mnt/alexandria/emby/data/music/:/mnt/music # Media directory
    ports:
      - 8096:8096 # HTTP port
      - 8920:8920 # HTTPS port
    restart: unless-stopped
    labels:
     - traefik.enable=true
     - traefik.docker.network=t2_proxy
     - traefik.http.routers.embyserver.rule=Host(`example.com`)
     - traefik.http.routers.embyserver.entryPoints=https
     - traefik.http.routers.embyserver.tls=true
     - traefik.http.services.embyserver.loadbalancer.server.port=8096
     - traefik.http.services.embyserver.loadbalancer.passHostHeader=true
    networks:
      - t2_proxy

networks:
  t2_proxy:
    external: true

The docker log shows this:

[s6-finish] waiting for services.
[s6-finish] sending all processes the TERM signal.
[s6-finish] sending all processes the KILL signal and exiting.
[s6-init] making user provided files available at /var/run/s6/etc...exited 0.
[s6-init] ensuring user provided files have correct perms...exited 0.
[fix-attrs.d] applying ownership & permissions fixes...
[fix-attrs.d] done.
[cont-init.d] executing container initialization scripts...
[cont-init.d] done.
[services.d] starting services
[services.d] done.
Failed to create CoreCLR, HRESULT: 0x80004005
[cont-finish.d] executing container finish scripts...
[cont-finish.d] done.

Any help would be greatly appreciated.

 

Cheers! :)

=C=

Posted
56 minutes ago, CalEvans said:
     - traefik.http.routers.embyserver.rule=Host(`example.com`)

I'm not saying this is your problem but those don't look like proper single quote characters.

Posted

No, they are not quotes, they are backticks. Those are traefik labels and for that particular one, that's how you do it.

 

No that's not the problem. Thank you however for looking.

 

Cheers! :)

=C=

  • Solution
Posted

This is resolved.

It was a corrupt container.

I removed the container and the image. Did a purge on both, then did a docker pull on embyserver:latest. Everything is now working. :)

 

Cheers! :)

=C=

  • Thanks 1
Posted

Thanks for following up.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...