-
Notifications
You must be signed in to change notification settings - Fork 1
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.git
If 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 molstruct
You need Docker installed.
- Clone this repository:
git clone https://github.com/lszeremeta/molstruct.git
If 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 molstruct
In this case, your local directory /home/user/input
has been mounted under /app/input
.