
* initial workflow * fix: wrong container path. * fix: build run command. * test: list directory. * test: list directory. * fix: add checkout action. * add setup scripts and instructions.
9 lines
121 B
Bash
9 lines
121 B
Bash
#!/bin/bash
|
|
|
|
# Should be run as root
|
|
|
|
apt -y update && apt -y upgrade
|
|
apt -y install docker.io
|
|
|
|
usermod -aG docker $USER
|