build: update cicd
This commit is contained in:
32
.env.registry.example
Normal file
32
.env.registry.example
Normal file
@@ -0,0 +1,32 @@
|
||||
# Configuration du Registre Docker pour docker-compose.prod.yml
|
||||
# Copiez ce fichier en .env et ajustez les valeurs
|
||||
|
||||
# URL du registre Docker (sans https://)
|
||||
# Exemples:
|
||||
# - Docker Hub: docker.io
|
||||
# - GitHub: ghcr.io
|
||||
# - GitLab: registry.gitlab.com
|
||||
# - Gitea: git.example.com
|
||||
# - Harbor: harbor.example.com
|
||||
REGISTRY_URL=registry.example.com
|
||||
|
||||
# Namespace/Organisation dans le registre
|
||||
# Exemples:
|
||||
# - Docker Hub: votre-username
|
||||
# - GitHub: votre-username ou organisation
|
||||
# - GitLab: votre-username/projet
|
||||
# - Gitea: votre-username
|
||||
REGISTRY_NAMESPACE=myorganization
|
||||
|
||||
# Tag de l'image à utiliser
|
||||
# Options:
|
||||
# - latest (dernière version)
|
||||
# - v2.0.0 (version spécifique)
|
||||
# - rewrite (branche spécifique)
|
||||
# - main-abc123 (commit SHA)
|
||||
IMAGE_TAG=latest
|
||||
|
||||
# Note: Pour utiliser ces variables avec docker-compose.prod.yml:
|
||||
# 1. Copiez ce fichier: cp .env.registry.example .env
|
||||
# 2. Éditez .env avec vos valeurs
|
||||
# 3. Lancez: docker-compose -f docker-compose.yml -f docker-compose.prod.yml up -d
|
||||
Reference in New Issue
Block a user