Merge branch 'master' of https://git.quodatum.duckdns.org/apb/thedocks
This commit is contained in:
commit
f025042fa9
@ -59,7 +59,7 @@
|
||||
handle @git {
|
||||
import omv 8300
|
||||
}
|
||||
@wiki host wiki.quodatum.duckdns.org
|
||||
@wiki host wiki.quodatum.duckdns.org
|
||||
handle @wiki {
|
||||
import auth_quodatum
|
||||
import n2 8088
|
||||
@ -74,6 +74,7 @@
|
||||
import auth_quodatum
|
||||
import n2plus 8444
|
||||
}
|
||||
|
||||
@code-alt host code-alt.quodatum.duckdns.org
|
||||
handle @code-alt {
|
||||
import auth_quodatum
|
||||
@ -97,7 +98,7 @@
|
||||
file_server browse
|
||||
}
|
||||
|
||||
@jellyfin host jellyfin.orlop.duckdns.org
|
||||
@jellyfin host jellyfin.orlop.duckdns.org
|
||||
handle @jellyfin {
|
||||
import auth
|
||||
import omv 8096
|
||||
@ -111,11 +112,15 @@
|
||||
handle @tvheadend {
|
||||
import n2plus 9981
|
||||
}
|
||||
@kodi host kodi.orlop.duckdns.org
|
||||
handle @kodi {
|
||||
import n2 8080
|
||||
}
|
||||
@test host test.orlop.duckdns.org
|
||||
handle @test {
|
||||
respond "test, test. Hello, world!"
|
||||
}
|
||||
# Fallback for otherwise unhandled domains
|
||||
# Fallback for otherwise unhandled domains
|
||||
handle {
|
||||
abort
|
||||
}
|
||||
|
@ -25,13 +25,10 @@
|
||||
<v-main>
|
||||
|
||||
<v-container>
|
||||
<v-row>
|
||||
<v-col>
|
||||
<iframe name="srv" src="icon.png" width="100%"></iframe>
|
||||
</v-col>
|
||||
<v-row align-content="start" no-gutters>
|
||||
<!-- item={href,port,text} -->
|
||||
<v-col >
|
||||
<v-card v-for="item in links" width="10em">
|
||||
<v-col v-for="item in links" :key="item.href" class="ma-2" >
|
||||
<v-card width="10em">
|
||||
<v-card-title class="text-caption">
|
||||
<a :href="item.href" :target="target">{{ item.text }}</a>
|
||||
</v-card-title>
|
||||
@ -41,11 +38,12 @@
|
||||
</v-card-actions>
|
||||
</v-card>
|
||||
</v-col>
|
||||
<v-col>
|
||||
<img name="srv" src="icon.png" width="100%"/>
|
||||
</v-col>
|
||||
</v-row>
|
||||
</v-container>
|
||||
|
||||
|
||||
|
||||
|
||||
</v-main>
|
||||
</v-app>
|
||||
</div>
|
||||
|
@ -12,7 +12,7 @@ services:
|
||||
- SUDO_PASSWORD_HASH= #optional
|
||||
volumes:
|
||||
- ./config:/config
|
||||
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
ports:
|
||||
- 8443:8443
|
||||
restart: unless-stopped
|
||||
|
@ -12,7 +12,7 @@ services:
|
||||
- SUDO_PASSWORD_HASH= #optional
|
||||
volumes:
|
||||
- ./config:/config
|
||||
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
ports:
|
||||
- 8444:8443
|
||||
restart: unless-stopped
|
||||
|
@ -4,7 +4,7 @@
|
||||
# @author Andy Bunce
|
||||
|
||||
# Main image
|
||||
FROM ghcr.io/linuxserver/code-server:4.1.0
|
||||
FROM ghcr.io/linuxserver/code-server:4.3.0
|
||||
|
||||
ARG TARGETARCH
|
||||
ARG BUILDARCH
|
||||
@ -29,7 +29,7 @@ ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk-amd64/
|
||||
RUN export JAVA_HOME
|
||||
|
||||
# install BaseX to /basex/
|
||||
RUN curl https://files.basex.org/releases/9.6.4/BaseX964.zip | jar xv && \
|
||||
RUN curl https://files.basex.org/releases/9.7/BaseX97.zip | jar xv && \
|
||||
chmod a+x /basex/bin/*;
|
||||
ENV PATH=$PATH:/basex/bin
|
||||
|
||||
|
@ -14,7 +14,7 @@ services:
|
||||
volumes:
|
||||
- ./config:/config
|
||||
- ./custom:/basex/lib/custom
|
||||
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
ports:
|
||||
- 8444:8443
|
||||
restart: unless-stopped
|
@ -15,6 +15,8 @@ services:
|
||||
- ./cache:/cache
|
||||
- /srv/dev-disk-by-uuid-45e2e732-9e00-4a82-a7cc-9c743e033671/datastore/music:/music
|
||||
- /srv/dev-disk-by-uuid-45e2e732-9e00-4a82-a7cc-9c743e033671/datastore/PicasaStarter/pictures/Pictures:/photos
|
||||
- /srv/dev-disk-by-uuid-45e2e732-9e00-4a82-a7cc-9c743e033671/datastore/films:/films
|
||||
- /srv/dev-disk-by-uuid-45e2e732-9e00-4a82-a7cc-9c743e033671/datastore/books:/books
|
||||
ports:
|
||||
- 8097:8096 # HTTP port
|
||||
- 8920:8920 # HTTPS port
|
||||
|
Loading…
Reference in New Issue
Block a user