Skip to content

Latest commit

 

History

History
14 lines (13 loc) · 643 Bytes

README.md

File metadata and controls

14 lines (13 loc) · 643 Bytes

dolt-docker

Simple container to try dolt. The image is based on lsiobase/ubuntu but run only on x86-64.

Usage

docker run -ti --rm -v ${PWD}:/data fulvius/dolt "doltcommandhere"

If you don't specify any command the help will be printed.

For example, if you need to initialize a new dolt repository:

docker run -ti --rm -v ${PWD}:/data fulvius/dolt init

Note that you need to provide a full name and email the first time you initialize a repository (See dolt documentation).