Compare commits
No commits in common. "8cc44f750079cc762af60c03a908962426887635" and "e87e6521a66e0726a403990ca9b53c560fc25522" have entirely different histories.
8cc44f7500
...
e87e6521a6
3 changed files with 1 additions and 137 deletions
|
|
@ -1,79 +0,0 @@
|
|||
services:
|
||||
suwayomi:
|
||||
image: ghcr.io/suwayomi/tachidesk:latest
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- default
|
||||
- reverse_proxy
|
||||
environment:
|
||||
- TZ=America/Santiago
|
||||
# Comment these out if you do not use the flaresolverr container at the bottom of this file
|
||||
- FLARESOLVERR_ENABLED=true
|
||||
- FLARESOLVERR_URL=http://tasks.flaresolverr:8191
|
||||
volumes:
|
||||
- suwayomi_downloads:/home/suwayomi/.local/share/Tachidesk/downloads
|
||||
- suwayomi_data:/home/suwayomi/.local/share/Tachidesk
|
||||
deploy:
|
||||
rollback_config:
|
||||
failure_action: continue
|
||||
update_config:
|
||||
delay: 2s
|
||||
failure_action: rollback
|
||||
order: start-first
|
||||
placement:
|
||||
constraints:
|
||||
- node.labels.services_kind==${SERVICE_KIND:-common}
|
||||
labels:
|
||||
- traefik.enable=true
|
||||
- traefik.http.routers.suwayomi.rule=Host(`suwayomi.alecodes.page`)
|
||||
- traefik.http.services.suwayomi.loadbalancer.server.port=4567
|
||||
|
||||
flaresolverr:
|
||||
image: ghcr.io/flaresolverr/flaresolverr:latest
|
||||
environment:
|
||||
- TZ=America/Santiago
|
||||
restart: unless-stopped
|
||||
|
||||
kavita:
|
||||
image: lscr.io/linuxserver/kavita:latest
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- default
|
||||
- reverse_proxy
|
||||
volumes:
|
||||
- suwayomi_downloads:/suwayomi
|
||||
- kavita_manga:/manga
|
||||
- kavita_comics:/comics
|
||||
- kavita_books:/books
|
||||
- kavita_config:/config
|
||||
environment:
|
||||
- TZ=America/Santiago
|
||||
- DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=true
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
deploy:
|
||||
rollback_config:
|
||||
failure_action: continue
|
||||
update_config:
|
||||
delay: 2s
|
||||
failure_action: rollback
|
||||
order: start-first
|
||||
placement:
|
||||
constraints:
|
||||
- node.labels.services_kind==${SERVICE_KIND:-common}
|
||||
labels:
|
||||
- traefik.enable=true
|
||||
- traefik.http.routers.kavita.rule=Host(`kavita.alecodes.page`)
|
||||
- traefik.http.services.kavita.loadbalancer.server.port=5000
|
||||
|
||||
networks:
|
||||
reverse_proxy:
|
||||
external: true
|
||||
|
||||
volumes:
|
||||
suwayomi_data:
|
||||
suwayomi_downloads:
|
||||
kavita_config:
|
||||
kavita_manga:
|
||||
kavita_comics:
|
||||
kavita_books:
|
||||
|
|
@ -1,29 +0,0 @@
|
|||
FROM node:20-alpine AS builder
|
||||
|
||||
ARG PHANPY_CLIENT_NAME="Phanpy"
|
||||
ARG PHANPY_WEBSITE="https://phanpy.social"
|
||||
ARG PHANPY_LINGVA_INSTANCES="lingva.phanpy.social lingva.lunar.icu lingva.garudalinux.org translate.plausibility.cloud"
|
||||
ARG PHANPY_PRIVACY_POLICY_URL="https://github.com/cheeaun/phanpy/blob/main/PRIVACY.MD"
|
||||
ARG PHANPY_DEFAULT_INSTANCE="mastodon.social"
|
||||
|
||||
ENV PHANPY_CLIENT_NAME=${PHANPY_CLIENT_NAME} \
|
||||
PHANPY_WEBSITE=${PHANPY_WEBSITE} \
|
||||
PHANPY_LINGVA_INSTANCES=${PHANPY_LINGVA_INSTANCES} \
|
||||
PHANPY_PRIVACY_POLICY_URL=${PHANPY_PRIVACY_POLICY_URL} \
|
||||
PHANPY_DEFAULT_INSTANCE=${PHANPY_DEFAULT_INSTANCE}
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN apk add --no-cache --virtual .build-deps git && \
|
||||
git clone --depth 1 -b production https://github.com/cheeaun/phanpy.git . && \
|
||||
npm install && \
|
||||
npm run build && \
|
||||
apk del .build-deps
|
||||
|
||||
FROM nginx:alpine
|
||||
|
||||
RUN echo -e 'server_tokens off;\nclient_max_body_size 99m;' > /etc/nginx/conf.d/custom.conf
|
||||
|
||||
COPY --from=builder /app/dist /usr/share/nginx/html
|
||||
|
||||
EXPOSE 80
|
||||
|
|
@ -3,11 +3,6 @@ services:
|
|||
image: ghcr.io/fedify-dev/hollo:canary
|
||||
env_file:
|
||||
- .env
|
||||
networks:
|
||||
- default
|
||||
- reverse_proxy
|
||||
dns:
|
||||
- 1.1.1.1
|
||||
deploy:
|
||||
rollback_config:
|
||||
failure_action: continue
|
||||
|
|
@ -20,7 +15,7 @@ services:
|
|||
- node.labels.services_kind==${SERVICE_KIND:-common}
|
||||
labels:
|
||||
- traefik.enable=true
|
||||
- traefik.http.routers.hollo.rule=Host(`fedi.alecodes.page`)
|
||||
- traefik.http.routers.hollo.rule=Host(`hollo.alecodes.page`)
|
||||
- traefik.http.services.hollo.loadbalancer.server.port=3000
|
||||
|
||||
hollo_db:
|
||||
|
|
@ -40,29 +35,6 @@ services:
|
|||
placement:
|
||||
constraints:
|
||||
- node.labels.services_kind==${SERVICE_KIND:-common}
|
||||
phanpy:
|
||||
image: ghcr.io/yitsushi/phanpy-docker:2024.04.04.65d51b0
|
||||
networks:
|
||||
- reverse_proxy
|
||||
deploy:
|
||||
labels:
|
||||
- "homepage.group=Social"
|
||||
- "homepage.icon=/icons/phanpy.png"
|
||||
- "homepage.name=Phanpy"
|
||||
- "homepage.href=https://phanpy.alecodes.page/"
|
||||
- "homepage.description=Alternative Mastodon Web Client"
|
||||
|
||||
- traefik.enable=true
|
||||
- traefik.http.routers.hollo-ui.rule=Host(`phanpy.alecodes.page`)
|
||||
- traefik.http.services.hollo-ui.loadbalancer.server.port=80
|
||||
|
||||
networks:
|
||||
phanpy-network:
|
||||
driver: bridge
|
||||
|
||||
volumes:
|
||||
hollo_db:
|
||||
|
||||
networks:
|
||||
reverse_proxy:
|
||||
external: true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue