correct LICENSE, Dockerfile, README

This commit is contained in:
Christian Reitter 2023-11-10 17:51:27 +01:00
parent 0c7f998442
commit 2a1f425628
3 changed files with 9 additions and 8 deletions

View File

@ -10,5 +10,5 @@ RUN bundle install
COPY . /home
RUN jekyll build
FROM nginx:1.25.1
FROM nginx:1.25
COPY --from=builder /home/_site /usr/share/nginx/html

View File

@ -1,5 +1,6 @@
MIT License
Copyright (c) 2023 Milk Sad team
Copyright (c) 2023 Distrust, LLC
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

View File

@ -29,19 +29,19 @@ $ make build
$ make serve
```
### Publish Docker container to Codeberg
### Publish Docker container to Registry
1. Use `docker login` with a Codeberg PAT with write package scope
2. Tag container with Codeberg repo name
1. Use `docker login` with a permission token with write package scope
2. Tag container with repo name
```shell
docker tag milksad-distrust-co codeberg.org/distrust/milksad-distrust-co
docker tag milksad-distrust-co git.distrust.co/milksad/website
```
3. Push container to Codeberg container registry
3. Push container to container registry
```sh
dockerb push codeberg.org/distrust/milksad-distrust-co
docker push git.distrust.co/milksad/website
```