From 01170a3849de3bc42de65817557b6601ccde5771 Mon Sep 17 00:00:00 2001 From: BigGamerGary Date: Thu, 14 Aug 2025 18:06:43 +1000 Subject: [PATCH] Docker changes --- docker-compose.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 0124b6d..e833579 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,6 +1,3 @@ -# Use version 3.8 of the Docker Compose file format -version: '3.8' - # Define the services (containers) that make up your application services: # 'python-app' is the name of your service @@ -10,7 +7,7 @@ services: # Mount the current directory on the host machine to '/app' inside the container. # This enables real-time code changes during development. volumes: - - "${PWD}:/app" + - "/home/gary/Discord/Acrybot:/app" # EXPLICITLY set the entrypoint for your container. # This ensures your Python script runs as the primary process and only once. # Replace 'your_script_name.py' with the actual name of your Python file.