This commit is contained in:
2025-08-13 20:19:55 +10:00
parent 1bc5dd7198
commit 0373b51af9

View File

@@ -10,8 +10,6 @@ steps:
- name: restart-bot # Name of the step that restarts your bot. - name: restart-bot # Name of the step that restarts your bot.
image: docker/compose:latest # Uses a Docker Compose-enabled image. image: docker/compose:latest # Uses a Docker Compose-enabled image.
volumes: volumes:
- name: docker_sock
path: /var/run/docker.sock
- name: docker_compose_dir - name: docker_compose_dir
path: /app path: /app
commands: commands:
@@ -25,9 +23,6 @@ steps:
# Defines the volumes that are available to the steps in this pipeline. # Defines the volumes that are available to the steps in this pipeline.
volumes: 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. - name: docker_compose_dir # A named volume for your Docker Compose project directory.
host: host:
path: /home/gary/Discord/Acrybot # The actual absolute path on your host machine. path: /home/gary/Discord/Acrybot # The actual absolute path on your host machine.