Initial commit

This commit is contained in:
Oliver Davies 2022-01-26 12:47:07 +00:00
commit 5079cdc5f0
2 changed files with 13 additions and 0 deletions

6
docker-compose.yaml Normal file
View file

@ -0,0 +1,6 @@
services:
app:
image: "golang:alpine"
volumes:
- "./:/app"
working_dir: /app

7
run Executable file
View file

@ -0,0 +1,7 @@
#!/bin/bash
function go {
docker-compose run --rm app go "${@}"
}
eval "$@"