Skip to content
filter

GitHub Action

MySQL to SQLite3 Converter

v1.0.0 Pre-release

MySQL to SQLite3 Converter

filter

MySQL to SQLite3 Converter

Connect to mysql and convert to sqlite3 file

Installation

Copy and paste the following snippet into your .yml file.

              

- name: MySQL to SQLite3 Converter

uses: benrowe/[email protected]

Learn more about this action in benrowe/mysql-to-sqlite3

Choose a version

Dockerhub Deploy

MySQL to SQLite3 (Docker + Github action)

Implements MySQL to SQLite3 as a docker utility

How to use as docker

docker run --rm -v ${PWD}:/output benrowe/mysql-to-sqlite3 database_name username host.docker.internal password path/to/file

How to use as github action

The github action runs this command inside the docker file, so the host will need to point to the host machien

- name: Convert to SQLite
  uses: benrowe/mysql-to-sqlite3-docker@v1
  with:
    output: /path/to/file
    database: database
    host: localhost
    username: root
    password: password