Skip to content
This repository has been archived by the owner on Oct 1, 2021. It is now read-only.

add a docker-compose file #70

Merged
merged 3 commits into from
Apr 27, 2021
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,21 @@ The manifest is known to work on:
- Kubernetes 1.17.0, Ubuntu 19.10, Kernel 5.3.0-46-generic, containerd 1.3.2
- **NOTE**: Requires `docker exec kind-control-plane mount -o remount,rw /sys`

## Docker Compose

To bring the container up simply run
```
docker-compose up -d
```
the vnc password can be gotten with
```
docker-compose exec aind cat /home/user/.vnc/passwdfile
```
you can check how far it is with
```
docker-compose exec aind ps -ef
```

## Tips

### adb
Expand Down
10 changes: 10 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: '2'
Fuseteam marked this conversation as resolved.
Show resolved Hide resolved
services:
aind:
image: 'aind/aind'
privileged: true
tty: true
ports:
- '5900:5900'
volumes:
- '/lib/modules:/lib/modules:ro'