https://github.com/willguimont/docker-globus
Run Globus Connect Personal in a Docker container.
https://github.com/willguimont/docker-globus
Last synced: 6 months ago
JSON representation
Run Globus Connect Personal in a Docker container.
- Host: GitHub
- URL: https://github.com/willguimont/docker-globus
- Owner: willGuimont
- License: mit
- Created: 2023-04-06T14:00:55.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-04-28T01:25:07.000Z (about 2 years ago)
- Last Synced: 2025-10-08T19:05:53.553Z (10 months ago)
- Language: Dockerfile
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# globus-docker
Run Globus Connect Personal in a Docker container.
## Usage
```shell
# Run with gui
docker build -t globus .
# You can change the volume to point to your data
docker run -it --rm --name globus --volume $HOME/Datasets:/home/appuser/data globus
# Run with gui
docker run -it --rm --name globus -e DISPLAY=$DISPLAY -v /tmp/.X11-unix:/tmp/.X11-unix --volume $HOME/Datasets:/home/appuser/data globus
# Run with gui
cd globusconnectpersonal-3.2.0 # or whatever version you have
./globusconnectpersonal -setup # follow instructions to connect to your account
./globusconnectpersonal -gui # or -start to run in cli
# The gui will open, click connect to start the endpoint
```