Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 664 Bytes

File metadata and controls

34 lines (27 loc) · 664 Bytes

implfuture

My personal website, hosted at implfuture.dev.

Building / Running

# local development
ibazel run //server --//:show_drafts

# build and deploy container image
bazel run -c opt //server:push-amd64 --stamp

In order to push to ECR, make sure ~/.docker/config.json contains:

{
  "credsStore": "ecr-login"
}

To authenticate with podman, use

aws ecr get-login-password --region us-west-1 | podman login --username AWS --password-stdin 689191389309.dkr.ecr.us-west-1.amazonaws.com

with config

{
	"auths": {},
	"credsStore": "ecr-login",
	"currentContext": "desktop-linux"
}