From b08d281e623a9326282bbc843d90517069df7d85 Mon Sep 17 00:00:00 2001 From: max Date: Fri, 27 Dec 2024 18:37:30 +0000 Subject: [PATCH] use short syntax for catask config binds in docker compose --- docker-compose.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 8cd37ac..fdc04e4 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -28,12 +28,8 @@ services: ports: - "8000:8000" volumes: - - type: bind - source: ./config.json - target: /catask/config.json - - type: bind - source: ./.env - target: /catask/.env + - ./config.json:/catask/config.json + - ./.env:/catask/.env volumes: db-data: \ No newline at end of file