diff --git a/.woodpecker.yml b/.woodpecker.yml index 72d913d..e80d5f2 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,45 +1,35 @@ -kind: pipeline # Defines this as a Woodpecker CI pipeline. -type: docker # Specifies that this pipeline will execute commands using Docker. -name: restart-discord-bot # A descriptive name for your pipeline. +kind: pipeline +type: docker +name: restart-discord-bot -# Defines when this pipeline should be triggered. trigger: branch: - - main # This pipeline will only run when changes are pushed to the 'main' branch. + - main event: - - push # The pipeline is triggered specifically by a 'push' event. + - push steps: - - name: restart-bot # Name of this specific step in the pipeline. - image: docker/compose:latest # Uses a Docker Compose-enabled image. - # This volume mount allows the Docker Compose CLI inside the Woodpecker agent container - # to communicate with the Docker daemon on the host machine. + - name: test-compose-access + image: docker/compose:latest volumes: - - name: docker_sock # A named volume for the Docker socket. - host: - path: /var/run/docker.sock # Maps the Docker socket from the host into the container. - - name: docker_compose_dir # A named volume for your Docker Compose project directory. - host: - # IMPORTANT: Replace '/path/to/your/bot/docker-compose' with the actual absolute path - # on your host machine where your docker-compose.yml file is located. - path: /home/gary/Discord/Acrybot - commands: - # Navigate into the directory where the docker-compose.yml file is mounted. - - cd /home/gary/Discord/Acrybot - # The command to restart your Discord bot service using Docker Compose. - # IMPORTANT: Replace 'your_bot_service_name' with the actual service name - # defined in your docker-compose.yml file. - # Use 'docker compose' for newer Docker versions (v2) or 'docker-compose' for older ones. - - docker compose restart python-app - # - docker-compose restart your_bot_service_name # Uncomment this line if you use older Docker Compose. + - name: docker_sock + path: /var/run/docker.sock + - name: docker_compose_dir + path: /app + commands: + - ls -la /app # List contents of the mounted directory + - docker --version # Check if Docker CLI is available + - docker compose version # Check Docker Compose version + - cd /app + - pwd # Print current working directory + - ls # List files in the current directory (should see docker-compose.yml) + # Temporarily comment out the restart command until previous ones succeed + # - docker compose restart your_bot_service_name -# Defines the volumes that are available to the steps in this pipeline. volumes: - - name: docker_sock # A named volume for the Docker socket. + - name: docker_sock host: - path: /var/run/docker.sock # Maps the Docker socket from the host into the container. - - name: docker_compose_dir # A named volume for your Docker Compose project directory. + path: /var/run/docker.sock + - name: docker_compose_dir host: - # IMPORTANT: Replace '/path/to/your/bot/docker-compose' with the actual absolute path - # on your host machine where your docker-compose.yml file is located. - path: /home/gary/Discord/Acrybot + path: /home/gary/Discord/Acrybot # Updated path to your Docker Compose directory