Problems installing HA Supervisor on Docker

Hi @oz8et
Is it still working for you? I had to modify the docker compose to this, but it just " Preparing Home Assistant", and nothing happened.

version: '3'
services:
  hassio_supervisor:
    image: homeassistant/amd64-hassio-supervisor:latest
    container_name: hassio_supervisor
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
      - /var/run/dbus:/var/run/dbus
      - ./config:/data
    environment:
      - SUPERVISOR_SHARE=./config
      - SUPERVISOR_NAME=hassio_supervisor
      - HOMEASSISTANT_REPOSITORY=homeassistant/qemux86-64-homeassistant
    security_opt:
      - seccomp=unconfined
      - apparmor=unconfined
    privileged: true
    restart: always
    cpus: 2
    mem_limit: 4G
    networks:
      - hassio-net

networks:
  hassio-net:
    driver: bridge
    ipam:
      driver: default
      config:
        - subnet: 172.30.32.0/24