https://github.com/vsiivola/variKN
Raw File
Tip revision: 3e9afd38a40c6f2547a362e9c885a2716a54834f authored by Vesa Siivola on 01 February 2023, 17:47:59 UTC
add platform to finch command
Tip revision: 3e9afd3
docker_notes.md
# Rudimentary notes on Docker

## Linux and intel processor Macs

```sh
# Set up docker env (only needed if you use command line docker-machine)
docker-machine start
eval $(docker-machine env default)

# Create container
docker build -t varikn_test_container .
# Log in container
docker container run --interactive --tty varikn_test_container
# Inside container
mkdir build; (cd build; cmake .. -DCMAKE_BUILD_TYPE=Release -DENABLE_TESTING=1
  && make && ctest --verbose)

# clean up
docker image rm varikn_test_container
docker machine stop
```

Notes for mac docker setup

```sh
# Install needed Homebrew packages
brew install docker docker-machine
brew cask install virtualbox
# Create VM
docker-machine create default
```

## Apple processor Macs (M1, M2)

On Apple silicon processor based mac (M1, M2), you can install
[Finch](https://github.com/runfinch) and run the following:

```sh
# Create container
finch build -t varikn_test_container --platform=Linux/amd64 .
# Log in container
finch container run --interactive --tty varikn_test_container
# Inside container
mkdir build; (cd build; cmake .. -DCMAKE_BUILD_TYPE=Release -DENABLE_TESTING=1
  && make && ctest --verbose)
```
back to top