Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
quasseldroid-docs
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
quasseldroid-docs
Commits
14c1bcfc
Verified
Commit
14c1bcfc
authored
6 years ago
by
Janne Mareike Koschinski
Browse files
Options
Downloads
Patches
Plain Diff
Changed deployment process to be more reliable
parent
e727fd93
No related branches found
No related tags found
No related merge requests found
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
Dockerfile
+3
-1
3 additions, 1 deletion
Dockerfile
build.sh
+9
-0
9 additions, 0 deletions
build.sh
deploy.sh
+7
-0
7 additions, 0 deletions
deploy.sh
mkdocs.yml
+2
-7
2 additions, 7 deletions
mkdocs.yml
with
21 additions
and
8 deletions
Dockerfile
+
3
−
1
View file @
14c1bcfc
FROM
squidfunk/mkdocs-material
as
builder
COPY
. /docs
COPY
docs /docs/docs
COPY
theme /docs/theme
COPY
mkdocs.yml /docs/
RUN
mkdocs build
FROM
nginx:stable-alpine
...
...
This diff is collapsed.
Click to expand it.
build.sh
0 → 100755
+
9
−
0
View file @
14c1bcfc
#!/bin/sh
IMAGE
=
k8r.eu/justjanne/quasseldroid-docs
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 @
14c1bcfc
#!/bin/sh
IMAGE
=
k8r.eu/justjanne/quasseldroid-docs
TAGS
=
$(
git describe
--always
--tags
HEAD
)
DEPLOYMENT
=
docs
POD
=
docs
kubectl
-n
quasseldroid
set
image deployment/
$DEPLOYMENT
$POD
=
$IMAGE
:
$TAGS
\ No newline at end of file
This diff is collapsed.
Click to expand it.
mkdocs.yml
+
2
−
7
View file @
14c1bcfc
...
...
@@ -4,11 +4,6 @@ site_description: 'A short description of my project'
site_author
:
'
Janne
Koschinski'
site_url
:
'
https://quasseldroid.info/docs/'
# Repository
repo_name
:
'
sandsmark/QuasselDroid'
repo_url
:
'
https://github.com/sandsmark/QuasselDroid'
edit_uri
:
"
"
# Copyright
copyright
:
'
Copyright
©
2017
Janne
Koschinski'
...
...
@@ -28,8 +23,8 @@ extra:
social
:
-
type
:
'
globe'
link
:
'
https://quasseldroid.info/'
-
type
:
'
git
hub-alt
'
link
:
'
https://git
hub.com/sandsmark/Q
uassel
D
roid'
-
type
:
'
git'
link
:
'
https://git
.kuschku.de/justjanne/q
uassel
d
roid
-ng
'
theme
:
name
:
'
material'
...
...
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