From cc916c172adb39dcbb7cc89725f1386c3d35c67a Mon Sep 17 00:00:00 2001 From: Redume Date: Thu, 27 Mar 2025 11:40:13 +0300 Subject: [PATCH] chore: dockerfile is now used for docker compose, not image. --- docker-compose.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index c17e976..a93a761 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -1,8 +1,8 @@ services: shirino: - build: . - image: ghcr.io/shirino/shirino:latest - restart: unless-stopped + build: + context: ./ + dockerfile: Dockerfile volumes: - './config.yaml:/config.yaml'