-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add full support for using the pre-built Docker image instead of manu…
…ally building it
- Loading branch information
Showing
2 changed files
with
13 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# DiscordChannelCloner | ||
A script to clone messages from a single or multipe channels into a specified channel using Discord Webhooks. [Cross-server channel cloning is supported] | ||
A script to clone messages (along with its details) from a single or multipe channels into a specified channel using Discord Webhooks. [Cross-server channel cloning is supported] | ||
|
||
# config.json example | ||
```json | ||
|
@@ -12,7 +12,17 @@ A script to clone messages from a single or multipe channels into a specified ch | |
] | ||
``` | ||
|
||
# Deploy the script using Docker | ||
### Note that the self-host user must have the `manage_webhooks` permission. | ||
|
||
# Deploy using Docker Compose (Recommended) | ||
Check the `docker-compose.yml` defined in this repository: https://github.com/exilvm/DiscordChannelCloner/blob/master/docker-compose.yml | ||
|
||
# The docker image can be found at [GitHub's Container Registry](https://github.com/exilvm/DiscordChannelCloner/pkgs/container/discordchannelcloner): | ||
``` | ||
docker pull ghcr.io/exilvm/discordchannelcloner:master | ||
``` | ||
|
||
# Or you can build the image on your own | ||
Run: | ||
``` | ||
git clone [email protected]:exilvm/DiscordChannelCloner.git && cd DiscordChannelCloner | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters