-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A prebuild docker image #4
Comments
This Docker image is built in two steps. First, the
Please note that I have only tested running |
I am raising an issue for a repository that includes three interrelated projects:
yetfl
,etfl
, andpytfa
. It seems that these projects have not been maintained for a while, and therequirements.txt
file does not specify the exact version numbers for the libraries. Therefore, for someone who is new to this project, it is challenging to configure the environment correctly and easily obtain the desired results.After a series of fixes, I have successfully created a pre-built Docker image that can be pulled and used directly, eliminating the need to solve the environment issues individually.
Prerequisite steps: You must clone all three projects onto your computer and organize the file directory as follows; otherwise, the Docker image will not run:
Then, execute the following command to pull the Docker image:
Once the image is successfully pulled, you can use the
docker images
command to view the image's ID.To run the container, you need to correctly mount the Docker volumes. Here are the specific steps:
Navigate to
parent_folder/etfl/docker
. You should see a file namedrun
orrun.bat
.The content of this file should be as follows:
The volumes are already mounted correctly for you in this script. You only need to replace the last line,
etfl-docker
, with the ID of my image:After making this change, run the
run
file, and you will enter the container.Once inside the container, navigate to:
Then run the following command:
You will see that it starts working.
Please note that the instructions provided assume familiarity with Docker and assume that you have already cloned the necessary repositories.
The text was updated successfully, but these errors were encountered: