correct LICENSE, Dockerfile, README
This commit is contained in:
parent
0c7f998442
commit
2a1f425628
|
@ -10,5 +10,5 @@ RUN bundle install
|
||||||
COPY . /home
|
COPY . /home
|
||||||
RUN jekyll build
|
RUN jekyll build
|
||||||
|
|
||||||
FROM nginx:1.25.1
|
FROM nginx:1.25
|
||||||
COPY --from=builder /home/_site /usr/share/nginx/html
|
COPY --from=builder /home/_site /usr/share/nginx/html
|
||||||
|
|
1
LICENSE
1
LICENSE
|
@ -1,5 +1,6 @@
|
||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2023 Milk Sad team
|
||||||
Copyright (c) 2023 Distrust, LLC
|
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:
|
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:
|
||||||
|
|
12
README.md
12
README.md
|
@ -29,19 +29,19 @@ $ make build
|
||||||
$ make serve
|
$ make serve
|
||||||
```
|
```
|
||||||
|
|
||||||
### Publish Docker container to Codeberg
|
### Publish Docker container to Registry
|
||||||
|
|
||||||
1. Use `docker login` with a Codeberg PAT with write package scope
|
1. Use `docker login` with a permission token with write package scope
|
||||||
2. Tag container with Codeberg repo name
|
2. Tag container with repo name
|
||||||
|
|
||||||
```shell
|
```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
|
```sh
|
||||||
dockerb push codeberg.org/distrust/milksad-distrust-co
|
docker push git.distrust.co/milksad/website
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue