ASH container not running

Hi @emesse92,

Why do you have network_mode: host inside your worker service configuration? (for info read the docs) This shouldn’t be the case since you don’t want to access the worker from the outside.

(Edit: I just saw that you took the config from Mustafa’s post)

This is my config:

worker:
    hostname: worker
    image: ynput/ayon-ash:latest
    restart: unless-stopped
    depends_on:
      server:
        condition: service_healthy

    volumes:
     - "/var/run/docker.sock:/var/run/docker.sock"

    environment:
      - "AYON_API_KEY=<api_key>"
      - "AYON_SERVER_URL=<ayon_url>"

Which comes from the ayon-docker repo.

Can you test with this?