Get file:

$ wget https://bytesofprogress.net/resources/docker-compose/homeassistant/docker-compose.yml

Contents of file:

services:
  homeassistant:
    container_name: homeassistant
    image: ghcr.io/home-assistant/home-assistant:stable
    volumes:
      - /PATH_TO_YOUR_CONFIG:/config
      - /etc/localtime:/etc/localtime:ro
      - /run/dbus:/run/dbus:ro
    restart: unless-stopped
    privileged: true
    network_mode: host

Additional information: Webinterface available on port 8123.