Gemini Test
This commit is contained in:
@@ -1,29 +1,38 @@
|
|||||||
kind: pipeline # Defines this as a Woodpecker CI pipeline.
|
kind: pipeline
|
||||||
type: docker
|
type: docker # Essential for Docker execution
|
||||||
name: restart-discord-bot # A descriptive name for your pipeline.
|
|
||||||
|
|
||||||
# Defines when this pipeline should be triggered.
|
name: restart-discord-bot
|
||||||
when:
|
|
||||||
- event: push
|
trigger:
|
||||||
branch: main
|
branch:
|
||||||
|
- main
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: restart-bot # Name of the step that restarts your bot.
|
- name: restart-bot
|
||||||
image: debian # Uses a Docker Compose-enabled image.
|
image: docker/compose:latest # Image with Docker Compose
|
||||||
volumes:
|
volumes:
|
||||||
|
# Explicitly mounting docker_sock for this step's container
|
||||||
|
- name: docker_sock
|
||||||
|
path: /var/run/docker.sock
|
||||||
|
# Mounting the docker-compose.yml directory
|
||||||
- name: docker_compose_dir
|
- name: docker_compose_dir
|
||||||
path: /app
|
path: /app # Mount point inside the container
|
||||||
commands:
|
commands:
|
||||||
- cd /app
|
- cd /app
|
||||||
# The command to restart your Discord bot service using Docker Compose.
|
# Execute the Docker Compose command
|
||||||
# IMPORTANT: Replace 'your_bot_service_name' with the actual name
|
# IMPORTANT: Replace 'your_bot_service_name' with your actual service name.
|
||||||
# of your Discord bot's service defined in your docker-compose.yml file.
|
- docker compose restart your_bot_service_name
|
||||||
# Use 'docker compose' for newer Docker versions (v2) or 'docker-compose' for older ones.
|
# Uncomment the line below if you use older Docker Compose (with a hyphen)
|
||||||
- docker compose restart python-app
|
# - docker-compose restart your_bot_service_name
|
||||||
# - docker-compose restart your_bot_service_name # Uncomment this line if you use older Docker Compose.
|
|
||||||
|
|
||||||
# Defines the volumes that are available to the steps in this pipeline.
|
# Define the host paths for the named volumes.
|
||||||
|
# These global volume definitions are used by the steps above.
|
||||||
volumes:
|
volumes:
|
||||||
- name: docker_compose_dir # A named volume for your Docker Compose project directory.
|
- name: docker_sock # Refers to the docker_sock volume used in steps
|
||||||
host:
|
host:
|
||||||
path: /home/gary/Discord/Acrybot # The actual absolute path on your host machine.
|
path: /var/run/docker.sock # Actual path on your host for the Docker socket
|
||||||
|
- name: docker_compose_dir # Refers to the docker_compose_dir volume used in steps
|
||||||
|
host:
|
||||||
|
path: /home/gary/Discord/Acrybot # Your actual path on the host for docker-compose.yml
|
||||||
|
|||||||
Reference in New Issue
Block a user