https://github.com/xiaoyao9184/docker-audioseal
Docker implementation of the AudioSeal
https://github.com/xiaoyao9184/docker-audioseal
cuda-support docker-image wam watermark-anything
Last synced: 2 months ago
JSON representation
Docker implementation of the AudioSeal
- Host: GitHub
- URL: https://github.com/xiaoyao9184/docker-audioseal
- Owner: xiaoyao9184
- License: apache-2.0
- Created: 2024-12-23T11:40:11.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2026-03-17T02:22:48.000Z (4 months ago)
- Last Synced: 2026-03-17T14:02:33.975Z (4 months ago)
- Topics: cuda-support, docker-image, wam, watermark-anything
- Language: Python
- Homepage: https://github.com/facebookresearch/audioseal
- Size: 324 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker audioseal
A Docker image built through Github Actions with Git commit version tag
# Why
I found that audioseal's Docker image is difficult to find.
The code on [GitHub](https://github.com/facebookresearch/audioseal) does not provide a pre-built Docker image.
This project will use GitHub Actions and Docker Hub to build and publish images,
aiming to keep the process as clean as possible without custom configuration files.
# Tags
The images of this project will be published to Docker Hub under the repository [xiaoyao9184/audio-seal](https://hub.docker.com/r/xiaoyao9184/audio-seal).
Since this project references the audioseal project via a submodule, it cannot monitor push events on the audioseal project, and therefore cannot automatically create an image for every commit.
A good solution is to manually trigger the action and tag it with the commit id. For more details, see this article [set-dynamic-parameters-github-workflows-en](https://damienaicheh.github.io/github/actions/2022/01/20/set-dynamic-parameters-github-workflows-en.html).
The default image name format is `${DOCKERHUB_USERNAME}/audio-seal`.
The tag uses the input parameter `commit_id`,
which can be either a branch name or a commit id,
when manually triggering the [docker-image-tag-commit](./.github/workflows/docker-image-tag-commit.yml) job.
if the job is triggered by a submodule update push,
the default branch name `main` will be used instead of the `commit_id` parameter.
This job will also use the shortened commit id as the tag.
Currently, only the `linux/amd64` platform is supported.
# Change
You can fork this project and build your own image. You will need to provide the following variables: `DOCKERHUB_USERNAME`, `DOCKERHUB_TOKEN`.
See [this](https://github.com/docker/login-action#docker-hub) for more details.