Skip to content

benrowe/mysql-to-sqlite3

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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