fix docker image creation and document it

This commit is contained in:
Travis Shears 2025-06-10 11:04:07 +02:00
parent 2197dd0c1d
commit e0afe65a1b
3 changed files with 11 additions and 3 deletions

View file

@ -16,3 +16,11 @@ App to store my code snippets.
```
$ clojure -M -m snippets.infra.api
```
### How to create docker image
At this point I'm using a private AWS ECR repository for the project and deploying it in my homelab.
```shell
$ docker buildx build --platform linux/amd64,linux/arm64 -t 853019563312.dkr.ecr.eu-central-1.amazonaws.com/code-snippets:latest --push .
```