Skip to content

Instantly share code, notes, and snippets.

View andy-brainome's full-sized avatar
😀

Andy Stevko andy-brainome

😀
View GitHub Profile
@andy-brainome
andy-brainome / Makefile
Created July 28, 2021 22:34 — forked from mpneuried/Makefile
Simple Makefile to build, run, tag and publish a docker containier to AWS-ECR
# import config.
# You can change the default config with `make cnf="config_special.env" build`
cnf ?= config.env
include $(cnf)
export $(shell sed 's/=.*//' $(cnf))
# import deploy config
# You can change the default deploy config with `make cnf="deploy_special.env" release`
dpl ?= deploy.env
include $(dpl)
@andy-brainome
andy-brainome / 0-4-steps-get-docker-with-gpu-on-ubuntu-2004.md
Created March 22, 2021 16:58 — forked from hideojoho/0-4-steps-get-docker-with-gpu-on-ubuntu-2004.md
4 steps to get a docker running with GPU on Ubuntu 20.04

4 steps to get a docker running with GPU on Ubuntu 20.04

Environment

  • Ubuntu 20.04
  • CUDA 10.2
  • Docker Latest

Four Steps