Skip to content

Commit

Permalink
update container labels
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberworm-uk authored Aug 22, 2024
1 parent 80b7b93 commit 7ddaaa0
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions arti/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ FROM docker.io/library/alpine:latest
LABEL org.opencontainers.image.base.name="docker.io/library/alpine"
LABEL org.opencontainers.image.title="Arti"
LABEL org.opencontainers.image.description="Rust implementation of Tor"
LABEL org.opencontainers.image.source="https://github.com/cyberworm-uk/tortainer.git"
RUN apk --no-cache --no-interactive add xz-libs sqlite-libs libgcc && addgroup -S arti && adduser -h /arti -S arti -G arti
COPY --from=build /usr/local/cargo/bin/arti /bin/arti
COPY arti.toml /arti/arti.toml
Expand Down
1 change: 1 addition & 0 deletions lyrebird/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ FROM scratch
LABEL org.opencontainers.image.base.name="scratch"
LABEL org.opencontainers.image.title="Lyrebird (binary)"
LABEL org.opencontainers.image.description="lyrebird client binary only"
LABEL org.opencontainers.image.source="https://github.com/cyberworm-uk/tortainer.git"
COPY --from=build /lyrebird /lyrebird
1 change: 1 addition & 0 deletions obfs4-bridge/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ FROM ghcr.io/cyberworm-uk/tor-base:latest
LABEL org.opencontainers.image.base.name="ghcr.io/cyberworm-uk/tor-base"
LABEL org.opencontainers.image.title="Obfs4 Bridge"
LABEL org.opencontainers.image.description="Obfs4 (Lyrebird) Bridge"
LABEL org.opencontainers.image.source="https://github.com/cyberworm-uk/tortainer.git"
RUN apk --no-cache --no-interactive add libcap-utils
EXPOSE 443
COPY --from=bin /lyrebird /usr/bin/lyrebird
Expand Down
1 change: 1 addition & 0 deletions obfs4-proxy/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ FROM ghcr.io/cyberworm-uk/tor-base:latest
LABEL org.opencontainers.image.base.name="ghcr.io/cyberworm-uk/tor-base"
LABEL org.opencontainers.image.title="Obfs4 Proxy"
LABEL org.opencontainers.image.description="Obfs4 (Lyrebird) Proxy"
LABEL org.opencontainers.image.source="https://github.com/cyberworm-uk/tortainer.git"
COPY --from=bin /lyrebird /usr/bin/lyrebird
EXPOSE 9050
ENTRYPOINT [ "/usr/bin/tor", \
Expand Down
1 change: 1 addition & 0 deletions snowflake-proxy/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ FROM ghcr.io/cyberworm-uk/tor-base:latest
LABEL org.opencontainers.image.base.name="ghcr.io/cyberworm-uk/tor-base"
LABEL org.opencontainers.image.title="Snowflake Proxy"
LABEL org.opencontainers.image.description="Snowflake Proxy"
LABEL org.opencontainers.image.source="https://github.com/cyberworm-uk/tortainer.git"
COPY --from=bin /client /usr/bin/client
EXPOSE 9050
ENTRYPOINT [ "/usr/bin/tor", \
Expand Down
1 change: 1 addition & 0 deletions snowflake-standalone/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ FROM docker.io/library/alpine:latest
LABEL org.opencontainers.image.base.name="docker.io/library/alpine"
LABEL org.opencontainers.image.title="Snowflake Standalone"
LABEL org.opencontainers.image.description="Snowflake Standalone (Entry Point)"
LABEL org.opencontainers.image.source="https://github.com/cyberworm-uk/tortainer.git"
RUN apk --no-cache --no-interactive add ca-certificates tzdata
COPY --from=build /go/src/proxy/proxy /bin/proxy
USER 1000
Expand Down
1 change: 1 addition & 0 deletions snowflake/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ FROM scratch
LABEL org.opencontainers.image.base.name="scratch"
LABEL org.opencontainers.image.title="snowflake client (binary)"
LABEL org.opencontainers.image.description="snowflake client binary only"
LABEL org.opencontainers.image.source="https://github.com/cyberworm-uk/tortainer.git"
COPY --from=build /go/src/client/client /client
1 change: 1 addition & 0 deletions torbase/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ FROM docker.io/library/alpine:latest
LABEL org.opencontainers.image.base.name="docker.io/library/alpine"
LABEL org.opencontainers.image.title="Tor base"
LABEL org.opencontainers.image.description="Tor base alpine image"
LABEL org.opencontainers.image.source="https://github.com/cyberworm-uk/tortainer.git"
RUN apk --no-cache --no-interactive add tor
COPY torrc /etc/tor/torrc-defaults
VOLUME [ "/var/lib/tor" ]
Expand Down
1 change: 1 addition & 0 deletions torproxy/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ FROM ghcr.io/cyberworm-uk/tor-base:latest
LABEL org.opencontainers.image.base.name="ghcr.io/cyberworm-uk/tor-base"
LABEL org.opencontainers.image.title="Tor Proxy"
LABEL org.opencontainers.image.description="Tor Proxy (client)"
LABEL org.opencontainers.image.source="https://github.com/cyberworm-uk/tortainer.git"
EXPOSE 9050
ENTRYPOINT [ "/usr/bin/tor", "--socksport", "0.0.0.0:9050" ]

0 comments on commit 7ddaaa0

Please sign in to comment.