antares
                                
                                 antares copied to clipboard
                                
                                    antares copied to clipboard
                            
                            
                            
                        Run as a docker container
Is your feature request related to a problem? Please describe. This issue is not related to a problem, it's just a feature request.
Describe the solution you'd like
I can see a potential possibility for antares-sql to run from the browser, the same way adminer is used currently. A concrete example would be something like the following (copied from the MariaDB official docker page)
# Use root/example as user/password credentials
version: '3.1'
services:
  db:
    image: mariadb
    restart: always
    environment:
      MYSQL_ROOT_PASSWORD: example
  antares:
    image: fabio286/antares
    restart: always
    ports:
      - 8080:8080
Antares would then be available by accessing localhost:8080 in a browser.
Describe alternatives you've considered We can always run the AppImage in a standard Linux docker container, forwarding the display to the host system, but that would be far more bothersome to configure in most cases.
Additional context No additional context.
Hi Paweł, it could be possible to create a web version of Antares in future. To achieve this goal we have to rewrite the electron main process as webserver and convert ipc api to http calls. It is definitely something that I will keep in mind after Antares reaches version 1.0.
Just chiming in saying I'd love to run Antares in the browser