diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index bf0d405..c3af8c5 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -21,12 +21,12 @@ jobs: - name: Build Docker Image run: | - docker build -t giga_tcg . # Build the Docker image using the Dockerfile + docker build -t giga_tcg . - name: Remove existing Docker container run: | - docker rm -f giga_tcg_container || true # Remove any existing container with the name + docker rm -f giga_tcg_container || true - name: Run Docker container run: | - docker run -d -p 8000:8000 --name giga_tcg_container giga_tcg # Run the new container \ No newline at end of file + docker run -d -p 8000:8000 --name giga_tcg_container giga_tcg \ No newline at end of file