Replies: 2 comments 14 replies
-
Hi @som1197 - thanks for catching the issue with the int! We will definitely submit a fix for that =) Regarding the issue you are getting right at the end, it seems to be related to your docker installation. I recommend that you restart your machine and try the following commands on your cmd/powershell: docker ps -a
docker run hello-world You should see an output similar to this: PS C:\Users\asdf> docker run hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
e6590344b1a5: Pull complete
Digest: sha256:e0b569a5163a5e6be84e210a2587e7d447e08f87a0e90798363fa44a0464a1e8
Status: Downloaded newer image for hello-world:latest
Hello from Docker!
This message shows that your installation appears to be working correctly.
To generate this message, Docker took the following steps:
1. The Docker client contacted the Docker daemon.
2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
(amd64)
3. The Docker daemon created a new container from that image which runs the
executable that produces the output you are currently reading.
4. The Docker daemon streamed that output to the Docker client, which sent it
to your terminal.
To try something more ambitious, you can run an Ubuntu container with:
$ docker run -it ubuntu bash
Share images, automate workflows, and more with a free Docker ID:
https://hub.docker.com/
For more examples and ideas, visit:
https://docs.docker.com/get-started/ If that works, that means that your docker install is correct. Also, please share the output of |
Beta Was this translation helpful? Give feedback.
-
After the implementations on #1785 - the various issues raised by @som1197 have been addressed and the script is up to date on the main branch. The Docker image build process now works well. |
Beta Was this translation helpful? Give feedback.
-
I am trying to install the geometry service for 2024 R2 using the file "build_docker_windows.py" based on the documentation
https://geometry.docs.pyansys.com/version/stable/getting_started/docker/windows_container.html#ref-windows-docker-fromscratch
Firstly, it gave me this error
I fixed it by placing an int() here (on line 73)
After that, I installed the ISO image containing the GeometryService folder since it was not present in the folder structure of ANSYS 2024 R2, based on this issue.
#1374
Now its showing me this error.
Beta Was this translation helpful? Give feedback.
All reactions