https://github.com/tueda/hep-env
https://github.com/tueda/hep-env
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/tueda/hep-env
- Owner: tueda
- Created: 2026-03-13T01:58:45.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-04-01T10:04:34.000Z (3 months ago)
- Last Synced: 2026-04-01T12:08:12.869Z (3 months ago)
- Language: Dockerfile
- Size: 51.8 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hep-env
## Usage
```bash
docker pull ghcr.io/tueda/hep-env:main
[ -d data ] || docker run --rm -v "$(pwd):/work" ghcr.io/tueda/hep-env:main cp -r /data .
docker run -it --rm -v "$(pwd):/work" -v "$(pwd)/data:/data" ghcr.io/tueda/hep-env:main
```
```bash
[ -d data ] || apptainer exec docker://ghcr.io/tueda/hep-env:main cp -r /data .
apptainer shell --bind "$(pwd)/data:/data" docker://ghcr.io/tueda/hep-env:main
```
## Development
```bash
docker build --progress=plain -t hep-env .
[ -d data ] || docker run --rm -v "$(pwd):/work" hep-env cp -r /data .
docker run -it --rm -v "$(pwd):/work" -v "$(pwd)/data:/data" hep-env
```
```bash
docker build --progress=plain -t hep-env .
[ -d data ] || apptainer exec docker-daemon:hep-env:latest cp -r /data .
apptainer shell --bind "$(pwd)/data:/data" docker-daemon:hep-env:latest
```