Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
imghost
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Janne Mareike Koschinski
imghost
Commits
73f14baf
Commit
73f14baf
authored
7 years ago
by
Janne Mareike Koschinski
Browse files
Options
Downloads
Patches
Plain Diff
Minor fixes, added build script
parent
702f674e
No related branches found
No related tags found
Loading
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
assets/sass/style.sass
+2
-2
2 additions, 2 deletions
assets/sass/style.sass
build.sh
+9
-0
9 additions, 0 deletions
build.sh
deploy.sh
+7
-0
7 additions, 0 deletions
deploy.sh
with
18 additions
and
2 deletions
assets/sass/style.sass
+
2
−
2
View file @
73f14baf
...
@@ -151,7 +151,7 @@ form.upload
...
@@ -151,7 +151,7 @@ form.upload
font-size
:
14pt
font-size
:
14pt
font-weight
:
normal
font-weight
:
normal
color
:
#eee
color
:
#eee
&
:empty
&
:
not
(
h2
)
:
empty
display
:
none
display
:
none
&
+
.image
&
+
.image
border-top-left-radius
:
4px
border-top-left-radius
:
4px
...
@@ -168,5 +168,5 @@ form.upload
...
@@ -168,5 +168,5 @@ form.upload
font-size
:
11pt
font-size
:
11pt
font-weight
:
normal
font-weight
:
normal
color
:
#eee
color
:
#eee
&
:empty
&
:
not
(
div
)
:
empty
display
:
none
display
:
none
\ No newline at end of file
This diff is collapsed.
Click to expand it.
build.sh
0 → 100755
+
9
−
0
View file @
73f14baf
#!/bin/sh
IMAGE
=
k8r.eu/justjanne/imghost-frontend
TAGS
=
$(
git describe
--always
--tags
HEAD
)
docker build
-t
$IMAGE
:
$TAGS
.
docker tag
$IMAGE
:
$TAGS
$IMAGE
:latest
echo
Successfully tagged
$IMAGE
:latest
docker push
$IMAGE
:
$TAGS
docker push
$IMAGE
:latest
\ No newline at end of file
This diff is collapsed.
Click to expand it.
deploy.sh
0 → 100755
+
7
−
0
View file @
73f14baf
#!/bin/sh
IMAGE
=
k8r.eu/justjanne/imghost-frontend
TAGS
=
$(
git describe
--always
--tags
HEAD
)
DEPLOYMENT
=
imghost-frontend
POD
=
imghost-frontend
kubectl
-n
imghost
set
image deployment/
$DEPLOYMENT
$POD
=
$IMAGE
:
$TAGS
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment