https://github.com/johnramsden/upmem-docker
https://github.com/johnramsden/upmem-docker
Last synced: 24 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/johnramsden/upmem-docker
- Owner: johnramsden
- License: mit
- Created: 2020-05-24T21:18:38.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-02-02T23:43:40.000Z (over 4 years ago)
- Last Synced: 2025-05-14T15:06:44.103Z (25 days ago)
- Language: Dockerfile
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# UPMEM in Docker
## Pull from Docker Hub
Docker Hub images are built from the code in this repository. Alternatively [build an image from source](#Build).
```shell
docker pull johnramsden/upmem
```## Build
If you would prefer to build your own image instead of using a pre-built one, clone this repository and build from source.
```shell
docker build . -t upmem
```## Usage
Place code to mount into container on local filesystem, `~/upmem` used in below example.
Run container, mounting a directory into the container:
```shell
docker run --interactive --tty \
--volume="${PWD}:/home/upmem/upmem" upmem
```## Multiple Terminals
To open up multiple terminals use `tmux` inside the container.
or `docker exec` into an already running container.
```shell
docker exec --interactive --tty /bin/bash
```---
References:
* https://sdk.upmem.com/
* https://sdk.upmem.com/2020.2.1/01_Install.html
* https://bitworks.software/en/2017-07-24-docker-ptrace-attach.htmlLicenced MIT