mirror of
https://github.com/agessaman/meshcore-bot.git
synced 2026-03-30 03:49:51 +00:00
- Modified docker-compose.yml to support using a pre-built image from GitHub Container Registry, with automatic tagging based on the current git branch. - Enhanced docker-setup.sh to detect the current git branch and set the Docker image tag accordingly, creating or updating the .env file with the appropriate configuration.
13 lines
472 B
Plaintext
13 lines
472 B
Plaintext
# Docker image configuration
|
|
# This file is auto-generated by docker-setup.sh based on your current git branch
|
|
# You can manually override these values if needed
|
|
|
|
# Docker image registry (default: ghcr.io/agessaman/meshcore-bot)
|
|
DOCKER_IMAGE_REGISTRY=ghcr.io/agessaman/meshcore-bot
|
|
|
|
# Docker image tag (auto-detected from git branch)
|
|
# - main/master branches -> latest
|
|
# - dev branch -> dev
|
|
# - other branches -> branch name (with / replaced by -)
|
|
DOCKER_IMAGE_TAG=latest
|