Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 575 Bytes

docker.md

File metadata and controls

24 lines (19 loc) · 575 Bytes

Running syntran in docker

Build the syntran docker container and run it:

sudo docker build . -t sy
sudo docker run -it sy

This starts with syntran as the entrypoint by default.

You can also edit and run syntran scripts in a container. To start with an sh shell as an entry point, run this:

sudo docker run -it --entrypoint /bin/sh sy

Then, within the container's shell, you can run any shell command, including syntran:

syntran --help