Posts

Setting up OptiTrack

by danaukes

Install

sudo apt install -y ros-melodic-mocap-optitrack

Create a rigid body and ensure it ...

Read More
Start Virtualbox as a Service in Linux

by danaukes

sudo apt reinstall virtualbox-dkms virtualbox-ext-pack virtualbox-qt virtualbox

```bash sudo nano /etc/default/virtualbox ...

Read More
Docker

by danaukes

A place to hold docker specific notes
Read More
About Docker Build and Compose

by danaukes

  • https://docs.docker.com/network/host/
  • https://docs.docker.com/get-started/
  • https://github.com/docker/awesome-compose/tree/master/wireguard
  • ...
Read More
Add a User in a Docker Container with a custom password

by danaukes

password="1YelloDog@"
pass=$(perl -e 'print crypt($ARGV[0], "password")' $password)
echo "$pass"

External Resources

  • ...
Read More
Answer on Docker

by danaukes

replace <password1> with your own password

```yaml version: "3" services: answer: image: answerdev/answer ...

Read More
Common Docker Commands

by danaukes

General Commands

docker images
docker pull
docker create
docker ps
docker attach 3378689f2069

Deleting, cleanup

```bash docker run —rm image_name docker system ...

Read More