Skip to content

Commit

Permalink
Labeling of v0.0.2 + Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
proofrock committed Sep 22, 2023
1 parent 58b7573 commit 393ccd6
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# docker buildx build --no-cache -t germanorizzo/seif:v0.0.1 . --push
# docker run --rm -i -p 12321:12321 -v seif:/data germanorizzo/seif:v0.0.1
# docker buildx build --no-cache -t germanorizzo/seif:v0.0.2 . --push
# docker run --rm -i -p 12321:12321 -v seif:/data germanorizzo/seif:v0.0.2

FROM node:latest as build

Expand Down
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
docker:
docker buildx build --no-cache -t germanorizzo/seif:v0.0.2 .
docker tag germanorizzo/seif:v0.0.2 germanorizzo/seif:latest
docker push germanorizzo/seif:v0.0.2
docker push germanorizzo/seif:latest

run:
npm run build
docker run -i --rm --name seif -v `pwd`:/data -p 12321:12321 germanorizzo/sqliterg:latest /sqliterg --db /data/seif.db --serve-dir /data/dist --index-file index.html
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Seif - one time secrets storage
## v0.0.2

Simple install, with docker:

Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "seif",
"private": true,
"version": "0.0.1",
"version": "0.0.2",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
<div class="navbar-brand bg-success text-white">
🔐 Seif
<span class="small"
><small><small>&nbsp;one time secrets storage - v0.0.1</small></small
><small><small>&nbsp;one time secrets storage - v0.0.2</small></small
></span
>
</div>
Expand Down

0 comments on commit 393ccd6

Please sign in to comment.