This file contains hidden or 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
#!/bin/bash | |
# Starfetcher | |
# This script uses 'jq', a command-line JSON processor. | |
# Installation instructions: | |
# - On Ubuntu or other Debian-based systems: sudo apt-get install jq | |
# - On CentOS, Fedora, or RHEL: sudo yum install jq | |
# - On macOS: brew install jq | |
# - On Windows, you can download it from https://stedolan.github.io/jq/download/ |
This file contains hidden or 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
--- | |
version: "3.7" | |
services: | |
chatbot: | |
container_name: chatgpt | |
image: yguy/chatgpt-mattermost-bot:latest | |
build: . | |
restart: unless-stopped | |
depends_on: | |
- mattermost |