Fix all old references to github.com/ekimekim/wubloader

mike/backfill-extras
Mike Lang 1 year ago committed by Mike Lang
parent 1596feef1f
commit 30d5ccc483

@ -21,11 +21,11 @@ This installation guide is written assuming you are on a Linux-like operating sy
You can download the latest version of the wubloader from github:
https://github.com/ekimekim/wubloader/archive/master.zip
https://github.com/dbvideostriketeam/wubloader/archive/master.zip
Alternatively if you have `git` installed you can clone the git repository:
`git clone https://github.com/ekimekim/wubloader`
`git clone https://github.com/dbvideostriketeam/wubloader`
## Generate the docker-compose file

@ -14,5 +14,5 @@ RUN pip install /tmp/common && rm -r /tmp/common
COPY api_ping /tmp/api_ping
RUN pip install /tmp/api_ping && rm -r /tmp/api_ping
LABEL org.opencontainers.image.source https://github.com/ekimekim/wubloader
LABEL org.opencontainers.image.source https://github.com/dbvideostriketeam/wubloader
ENTRYPOINT ["python3", "-m", "api_ping"]

@ -15,5 +15,5 @@ RUN apk add postgresql-dev postgresql-libs
COPY backfiller /tmp/backfiller
RUN pip install /tmp/backfiller && rm -r /tmp/backfiller
LABEL org.opencontainers.image.source https://github.com/ekimekim/wubloader
LABEL org.opencontainers.image.source https://github.com/dbvideostriketeam/wubloader
ENTRYPOINT ["python3", "-m", "backfiller", "--base-dir", "/mnt"]

@ -17,7 +17,7 @@ COMPONENTS=(downloader restreamer backfiller thrimshim cutter sheetsync nginx po
PUSH=${PUSH:-}
# Base is the repository namespace information, not including the wubloader-component part.
BASE="ghcr.io/ekimekim"
BASE="ghcr.io/dbvideostriketeam"
# The docker image tag, derived from the git commit + whether working tree is clean
TAG=$(./get-build-tag)

@ -18,5 +18,5 @@ RUN pip install /tmp/common && rm -r /tmp/common
COPY chat_archiver /tmp/archiver
RUN pip install /tmp/archiver && rm -r /tmp/archiver
LABEL org.opencontainers.image.source https://github.com/ekimekim/wubloader
LABEL org.opencontainers.image.source https://github.com/dbvideostriketeam/wubloader
ENTRYPOINT ["python3", "-m", "chat_archiver", "--base-dir", "/mnt"]

@ -15,5 +15,5 @@ RUN apk add postgresql-dev postgresql-client ffmpeg
COPY cutter /tmp/cutter
RUN pip install /tmp/cutter && rm -r /tmp/cutter
LABEL org.opencontainers.image.source https://github.com/ekimekim/wubloader
LABEL org.opencontainers.image.source https://github.com/dbvideostriketeam/wubloader
ENTRYPOINT ["python3", "-m", "cutter", "--base-dir", "/mnt"]

@ -13,7 +13,7 @@
// you're actually running, and must manually re-pull to get an updated copy.
image_tag:: std.extVar("tag"),
database_tag:: "bb05e37", // tag for DB, which changes less and restarts are disruptive
image_base:: "ghcr.io/ekimekim", // Change this to use images from a different source than the main one
image_base:: "ghcr.io/dbvideostriketeam", // Change this to use images from a different source than the main one
// For each service, whether to deploy that service.
enabled:: {

@ -14,5 +14,5 @@ RUN pip install /tmp/common && rm -r /tmp/common
COPY downloader /tmp/downloader
RUN pip install /tmp/downloader && rm -r /tmp/downloader
LABEL org.opencontainers.image.source https://github.com/ekimekim/wubloader
LABEL org.opencontainers.image.source https://github.com/dbvideostriketeam/wubloader
ENTRYPOINT ["python3", "-m", "downloader", "--base-dir", "/mnt"]

@ -201,7 +201,7 @@
// This function generates deployments for each service, since they only differ slightly,
// with only a different image, CLI args and possibly env vars.
// The image name is derived from the component name
// (eg. "downloader" is ghcr.io/ekimekim/wubloader-downloader)
// (eg. "downloader" is ghcr.io/dbvideostriketeam/wubloader-downloader)
// so we only pass in name as a required arg.
// Optional kwargs work just like python.
deployment(name, args=[], env=[], volumes=[], volumeMounts=[]):: {
@ -226,7 +226,7 @@
name: name,
// segment-coverage is called segment_coverage in the image, so replace - with _
// ditto for playlist-manager
image: "ghcr.io/ekimekim/wubloader-%s:%s" % [std.strReplace(name, "-", "_"), $.config.image_tag],
image: "ghcr.io/dbvideostriketeam/wubloader-%s:%s" % [std.strReplace(name, "-", "_"), $.config.image_tag],
args: args,
volumeMounts: [{name: "data", mountPath: "/mnt"}] + volumeMounts,
env: $.env_list + env, // main env list combined with any deployment-specific ones
@ -279,7 +279,7 @@
containers: [
{
name: name,
image: "ghcr.io/ekimekim/wubloader-%s:%s" % [name, $.config.database_tag],
image: "ghcr.io/dbvideostriketeam/wubloader-%s:%s" % [name, $.config.database_tag],
args: args,
env: $.env_list + env, // main env list combined with any statefulset-specific ones
volumeMounts: [

@ -2,5 +2,5 @@
FROM nginx:latest
ADD nginx/generate-config /
COPY thrimbletrimmer /etc/nginx/html/thrimbletrimmer
LABEL org.opencontainers.image.source https://github.com/ekimekim/wubloader
LABEL org.opencontainers.image.source https://github.com/dbvideostriketeam/wubloader
ENTRYPOINT ["/bin/sh", "-c", "/generate-config && nginx -g \"daemon off;\""]

@ -14,5 +14,5 @@ RUN pip install /tmp/common && rm -r /tmp/common
COPY playlist_manager /tmp/playlist_manager
RUN pip install /tmp/playlist_manager && rm -r /tmp/playlist_manager
LABEL org.opencontainers.image.source https://github.com/ekimekim/wubloader
LABEL org.opencontainers.image.source https://github.com/dbvideostriketeam/wubloader
ENTRYPOINT ["python3", "-m", "playlist_manager"]

@ -2,5 +2,5 @@ FROM postgres:12
COPY postgres/setup.sh /docker-entrypoint-initdb.d/setup.sh
RUN chmod 0666 /docker-entrypoint-initdb.d/setup.sh
COPY postgres/standby_setup.sh /standby_setup.sh
LABEL org.opencontainers.image.source https://github.com/ekimekim/wubloader
LABEL org.opencontainers.image.source https://github.com/dbvideostriketeam/wubloader
RUN chmod 0700 /standby_setup.sh

@ -15,5 +15,5 @@ RUN apk add ffmpeg
COPY restreamer /tmp/restreamer
RUN pip install /tmp/restreamer && rm -r /tmp/restreamer
LABEL org.opencontainers.image.source https://github.com/ekimekim/wubloader
LABEL org.opencontainers.image.source https://github.com/dbvideostriketeam/wubloader
ENTRYPOINT ["python3", "-m", "restreamer", "--base-dir", "/mnt"]

@ -21,5 +21,5 @@ RUN ln -s /usr/include/locale.h /usr/include/xlocale.h \
COPY segment_coverage /tmp/segment_coverage
RUN pip install /tmp/segment_coverage && rm -r /tmp/segment_coverage
LABEL org.opencontainers.image.source https://github.com/ekimekim/wubloader
LABEL org.opencontainers.image.source https://github.com/dbvideostriketeam/wubloader
ENTRYPOINT ["python3", "-m", "segment_coverage"]

@ -15,5 +15,5 @@ RUN apk add postgresql-dev postgresql-client
COPY sheetsync /tmp/sheetsync
RUN pip install /tmp/sheetsync && rm -r /tmp/sheetsync
LABEL org.opencontainers.image.source https://github.com/ekimekim/wubloader
LABEL org.opencontainers.image.source https://github.com/dbvideostriketeam/wubloader
ENTRYPOINT ["python3", "-m", "sheetsync"]

@ -15,5 +15,5 @@ RUN apk add postgresql-dev postgresql-libs
COPY thrimshim /tmp/thrimshim
RUN pip install /tmp/thrimshim && rm -r /tmp/thrimshim
LABEL org.opencontainers.image.source https://github.com/ekimekim/wubloader
LABEL org.opencontainers.image.source https://github.com/dbvideostriketeam/wubloader
ENTRYPOINT ["python3", "-m", "thrimshim"]

Loading…
Cancel
Save