First Release

This commit is contained in:
Mukhtar Akere
2024-08-25 06:34:34 +01:00
parent d54706fed6
commit 7f0f71ba64
3 changed files with 12 additions and 11 deletions

View File

@@ -1,11 +1,3 @@
# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com
# The lines below are called `modelines`. See `:help modeline`
# Feel free to remove those if you don't want/need to use them.
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
# vim: set ts=2 sw=2 tw=0 fo=cnqoj
version: 2 version: 2
before: before:
@@ -20,6 +12,11 @@ builds:
- linux - linux
- windows - windows
- darwin - darwin
goarch:
- amd64
- arm
- arm64
archives: archives:
- format: tar.gz - format: tar.gz
@@ -42,3 +39,7 @@ changelog:
exclude: exclude:
- "^docs:" - "^docs:"
- "^test:" - "^test:"
# Environment setup
env:
- CGO_ENABLED=0

View File

@@ -21,4 +21,4 @@ FROM scratch
COPY --from=builder /blackhole /blackhole COPY --from=builder /blackhole /blackhole
# Run # Run
CMD ["/blackhole", "--config", "/app/config.json"] # CMD ["/blackhole", "--config", "/app/config.json"]

View File

@@ -15,8 +15,8 @@ The proxy is useful in filtering out un-cached Real Debrid torrents
version: '3.7' version: '3.7'
services: services:
blackhole: blackhole:
image: cy01/blackhole:latest image: ghcr.io/sirrobot01/debrid-blackhole:latest
container_name: blackhole container_name: debrid-blackhole
user: "1000:1000" user: "1000:1000"
volumes: volumes:
- ./logs:/app/logs - ./logs:/app/logs