-
Notifications
You must be signed in to change notification settings - Fork 2
Run from sources and manual Docker build
Łukasz Szeremeta edited this page Apr 16, 2021
·
2 revisions
- Clone this repository:
git clone https://github.com/lszeremeta/molstruct.gitIf you don't want or can't use git, you can download the zip archive and extract it.
- Go to the project directory and run Molstruct:
cd molstruct
python -m molstructYou need Docker installed.
- Clone this repository:
git clone https://github.com/lszeremeta/molstruct.gitIf you don't want or can't use git, you can download the zip archive and extract it.
- Go to the project directory and build a Docker image:
cd molstruct
docker build -t molstruct .- Run Docker container:
docker run -it --rm --name molstruct-app --mount type=bind,source=/home/user/input,target=/app/input,readonly molstructIn this case, your local directory /home/user/input has been mounted under /app/input.