antares icon indicating copy to clipboard operation
antares copied to clipboard

Run as a docker container

Open czocher opened this issue 3 years ago • 2 comments

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.

czocher avatar Feb 23 '22 06:02 czocher

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.

Fabio286 avatar Feb 23 '22 08:02 Fabio286

Just chiming in saying I'd love to run Antares in the browser

santiagobasulto avatar Dec 28 '22 10:12 santiagobasulto