Compare commits
23 Commits
73cad693a1
...
1.0.7
Author | SHA1 | Date | |
---|---|---|---|
fa73ce8f58 | |||
24f624a673 | |||
ce18848bb0 | |||
37254883a4 | |||
722f32e0a9 | |||
d97b679f1e | |||
4bfa632dff | |||
0c30da7e6d | |||
2fcf3ad3a2 | |||
930c550385 | |||
ea31268ef5 | |||
c1b575f5a9 | |||
ad67e1831b | |||
7330851694 | |||
62829cecad | |||
afa3886de5 | |||
d066bed021 | |||
1cf9089e33 | |||
9aeb4b44b4 | |||
f3f6fd7be5 | |||
138fa27962 | |||
234992141c | |||
89d9610ba8 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,2 +1 @@
|
|||||||
*.swp
|
*.swp
|
||||||
/files
|
|
||||||
|
@@ -2,15 +2,14 @@
|
|||||||
# This guy is awesome: https://dev.to/bzinoun/gitlab-ci-to-build-and-push-containers-to-registry-538a
|
# This guy is awesome: https://dev.to/bzinoun/gitlab-ci-to-build-and-push-containers-to-registry-538a
|
||||||
#
|
#
|
||||||
|
|
||||||
image: docker:latest
|
image: morlay/buildx:607a2ce
|
||||||
variables:
|
variables:
|
||||||
# DinD's vfs driver is pretty intensive; this is less so
|
# DinD's vfs driver is pretty intensive; this is less so
|
||||||
DOCKER_DRIVER: overlay2
|
DOCKER_DRIVER: overlay2
|
||||||
CI_HUB_USERNAME: rehashedsalt
|
CI_HUB_USERNAME: rehashedsalt
|
||||||
stages:
|
stages:
|
||||||
- build
|
- build
|
||||||
- test
|
# - test
|
||||||
- push
|
|
||||||
services:
|
services:
|
||||||
- docker:dind
|
- docker:dind
|
||||||
before_script:
|
before_script:
|
||||||
@@ -25,45 +24,31 @@ Build:
|
|||||||
stage: build
|
stage: build
|
||||||
script:
|
script:
|
||||||
- docker pull $CI_HUB_USERNAME/$CI_PROJECT_NAME:latest || true
|
- docker pull $CI_HUB_USERNAME/$CI_PROJECT_NAME:latest || true
|
||||||
|
- docker buildx create --use
|
||||||
- >
|
- >
|
||||||
docker build
|
docker buildx build
|
||||||
--pull
|
--pull
|
||||||
|
--platform linux/amd64,linux/arm64
|
||||||
--cache-from $CI_HUB_USERNAME/$CI_PROJECT_NAME:latest
|
--cache-from $CI_HUB_USERNAME/$CI_PROJECT_NAME:latest
|
||||||
--tag $CI_HUB_USERNAME/$CI_PROJECT_NAME:$CI_COMMIT_SHORT_SHA
|
--tag $CI_HUB_USERNAME/$CI_PROJECT_NAME:$CI_COMMIT_SHORT_SHA
|
||||||
|
--tag $CI_HUB_USERNAME/$CI_PROJECT_NAME:bleeding
|
||||||
|
--push
|
||||||
.
|
.
|
||||||
- docker push $CI_HUB_USERNAME/$CI_PROJECT_NAME:$CI_COMMIT_SHORT_SHA
|
- docker images
|
||||||
|
Build_Tag:
|
||||||
# TEST
|
stage: build
|
||||||
Test_HTTP_200:
|
|
||||||
stage: test
|
|
||||||
script:
|
|
||||||
- docker run -d -p 8889:80 $CI_HUB_USERNAME/$CI_PROJECT_NAME:$CI_COMMIT_SHORT_SHA
|
|
||||||
- curl localhost:8889 | grep -ie '200 OK'
|
|
||||||
- docker kill $(docker ps -q)
|
|
||||||
|
|
||||||
# PUSH
|
|
||||||
Push_When_Tag:
|
|
||||||
stage: push
|
|
||||||
only:
|
only:
|
||||||
- tags
|
- tags
|
||||||
script:
|
script:
|
||||||
- docker pull $CI_HUB_USERNAME/$CI_PROJECT_NAME:$CI_COMMIT_SHORT_SHA
|
- docker pull $CI_HUB_USERNAME/$CI_PROJECT_NAME:latest || true
|
||||||
|
- docker buildx create --use
|
||||||
- >
|
- >
|
||||||
docker tag
|
docker buildx build
|
||||||
$CI_HUB_USERNAME/$CI_PROJECT_NAME:$CI_COMMIT_SHORT_SHA
|
--pull
|
||||||
$CI_HUB_USERNAME/$CI_PROJECT_NAME:$CI_COMMIT_REF_NAME
|
--platform linux/amd64,linux/arm64
|
||||||
- docker push $CI_HUB_USERNAME/$CI_PROJECT_NAME:$CI_COMMIT_REF_NAME
|
--cache-from $CI_HUB_USERNAME/$CI_PROJECT_NAME:latest
|
||||||
- >
|
--tag $CI_HUB_USERNAME/$CI_PROJECT_NAME:$CI_COMMIT_REF_NAME
|
||||||
docker tag
|
--tag $CI_HUB_USERNAME/$CI_PROJECT_NAME:latest
|
||||||
$CI_HUB_USERNAME/$CI_PROJECT_NAME:$CI_COMMIT_SHORT_SHA
|
--push
|
||||||
$CI_HUB_USERNAME/$CI_PROJECT_NAME:latest
|
.
|
||||||
- docker push $CI_HUB_USERNAME/$CI_PROJECT_NAME:latest
|
- docker images
|
||||||
Push_Bleeding:
|
|
||||||
stage: push
|
|
||||||
script:
|
|
||||||
- docker pull $CI_HUB_USERNAME/$CI_PROJECT_NAME:$CI_COMMIT_SHORT_SHA
|
|
||||||
- >
|
|
||||||
docker tag
|
|
||||||
$CI_HUB_USERNAME/$CI_PROJECT_NAME:$CI_COMMIT_SHORT_SHA
|
|
||||||
$CI_HUB_USERNAME/$CI_PROJECT_NAME:bleeding
|
|
||||||
- docker push $CI_HUB_USERNAME/$CI_PROJECT_NAME:bleeding
|
|
||||||
|
@@ -1,4 +1,3 @@
|
|||||||
FROM php:7-apache
|
FROM php:7-apache
|
||||||
COPY ./ /var/www/html/
|
COPY ./ /var/www/html/
|
||||||
RUN mkdir /var/www/html/files
|
|
||||||
EXPOSE 80
|
EXPOSE 80
|
||||||
|
@@ -11,7 +11,7 @@
|
|||||||
<h1>About 9iron</h1>
|
<h1>About 9iron</h1>
|
||||||
<p>9iron is a website spun up by yours truly to unify the services I host and inevitably rope my friends into. It also aggregates documentation about the various games we play.</p>
|
<p>9iron is a website spun up by yours truly to unify the services I host and inevitably rope my friends into. It also aggregates documentation about the various games we play.</p>
|
||||||
<h1>About Me</h1>
|
<h1>About Me</h1>
|
||||||
<p>I am Salt. I'm a sysadmin and I play video games. I try to be most active on Matrix, but inevitably have to use Discord all the damn time. You can also reach me very effectively through the Fediverse and email.</p>
|
<p>I am Salt. I'm a sysadmin and I play video games. I'm regrettably most active on Discord because there are no good alternatives (that my friends will join). You can also reach me very effectively through the Fediverse and email.</p>
|
||||||
<p>Hit me up if you wanna play something or if shit breaks.</p>
|
<p>Hit me up if you wanna play something or if shit breaks.</p>
|
||||||
<dl>
|
<dl>
|
||||||
<dt>Fedi:</dt>
|
<dt>Fedi:</dt>
|
||||||
|
0
files/.keep
Normal file
0
files/.keep
Normal file
1
minecraft/packs/current
Symbolic link
1
minecraft/packs/current
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
null
|
@@ -124,8 +124,12 @@
|
|||||||
// - Brett
|
// - Brett
|
||||||
"\"Be grody on my back. Wait-\"",
|
"\"Be grody on my back. Wait-\"",
|
||||||
// - Brett
|
// - Brett
|
||||||
|
"\"Let's get this cock onto a tray!\"",
|
||||||
|
// - Brett
|
||||||
"\"This is Hell, they are all prostitutes.\"",
|
"\"This is Hell, they are all prostitutes.\"",
|
||||||
// - Jordyn
|
// - Jordyn
|
||||||
|
"\"Isn't an asshole like a brass instrument?\"",
|
||||||
|
// - Jordyn
|
||||||
"\"Sir, this is an M32 grenade launcher\"",
|
"\"Sir, this is an M32 grenade launcher\"",
|
||||||
// - Jacob https://www.youtube.com/watch?v=DJRkFLFnv3c
|
// - Jacob https://www.youtube.com/watch?v=DJRkFLFnv3c
|
||||||
"\"OHNO!\"",
|
"\"OHNO!\"",
|
||||||
@@ -162,8 +166,14 @@
|
|||||||
// - Jacob, after I said he's my little pogchamp
|
// - Jacob, after I said he's my little pogchamp
|
||||||
"\"They're children you thirsty whores\"",
|
"\"They're children you thirsty whores\"",
|
||||||
// - Sam
|
// - Sam
|
||||||
|
"\"Pichu is illegal\"",
|
||||||
|
// - Sam
|
||||||
|
"\"DEDEDE FUCKS\"",
|
||||||
|
// - Sam
|
||||||
"\"Imagine 'Blades of Glory' but they fuck\"",
|
"\"Imagine 'Blades of Glory' but they fuck\"",
|
||||||
// - Also Sam
|
// - Also Sam
|
||||||
|
"\"There's no D in BDSM\"",
|
||||||
|
// - Rachael
|
||||||
"God dammit, Sam",
|
"God dammit, Sam",
|
||||||
"God dammit, Jacob",
|
"God dammit, Jacob",
|
||||||
"God dammit",
|
"God dammit",
|
||||||
|
@@ -23,6 +23,7 @@
|
|||||||
<h4>desu.ltd</h4>
|
<h4>desu.ltd</h4>
|
||||||
<a href="https://desu.ltd">Index</a>
|
<a href="https://desu.ltd">Index</a>
|
||||||
<a href="https://git.desu.ltd">Gitea</a>
|
<a href="https://git.desu.ltd">Gitea</a>
|
||||||
|
<a href="http://local.desu.ltd">Local</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="spsubsection">
|
<div class="spsubsection">
|
||||||
<h4>9iron</h4>
|
<h4>9iron</h4>
|
||||||
|
Reference in New Issue
Block a user