From 02b24a3e78767be765aaa200909a0f0ee1a0cdc0 Mon Sep 17 00:00:00 2001 From: Isaac Shoebottom Date: Fri, 6 Dec 2024 12:48:39 -0400 Subject: [PATCH] Update cobalt to provide the API instead of webui. Use cobolt.tools with instance configured for requests --- cobalt/docker-compose.yml | 25 +++++-------------------- 1 file changed, 5 insertions(+), 20 deletions(-) diff --git a/cobalt/docker-compose.yml b/cobalt/docker-compose.yml index 71b4f88..0ade060 100755 --- a/cobalt/docker-compose.yml +++ b/cobalt/docker-compose.yml @@ -1,10 +1,9 @@ -version: '3.5' - +# https://github.com/imputnet/cobalt/blob/main/docs/run-an-instance.md services: cobalt-api: - image: ghcr.io/imputnet/cobalt:7 + image: ghcr.io/imputnet/cobalt:latest restart: unless-stopped - container_name: cobalt-api + container_name: cobalt init: true ports: - 9000:9000/tcp @@ -12,7 +11,7 @@ services: #- 127.0.0.1:9000:9000 environment: # replace https://api.cobalt.tools/ with your instance's target url in same format - API_URL: "https://cobalt-api.shoebottom.ca/" + API_URL: "https://cobalt.shoebottom.ca/" # replace eu-nl with your instance's distinctive name API_NAME: "ca-nb-irs" # if you want to use cookies when fetching data from services, uncomment the next line and the lines under volume @@ -20,18 +19,4 @@ services: # see docs/run-an-instance.md for more information # if you want to use cookies when fetching data from services, uncomment volumes and next line #volumes: - #- ./cookies.json:/cookies.json - cobalt-web: - image: ghcr.io/imputnet/cobalt:7 - restart: unless-stopped - container_name: cobalt-web - init: true - ports: - - 9001:9001/tcp - # if you're using a reverse proxy, uncomment the next line and remove the one above (9001:9001/tcp): - #- 127.0.0.1:9001:9001 - environment: - # replace https://cobalt.tools/ with your instance's target url in same format - WEB_URL: "https://cobalt.shoebottom.ca/" - # replace https://api.cobalt.tools/ with preferred api instance url - API_URL: "https://cobalt-api.shoebottom.ca/" \ No newline at end of file + #- ./cookies.json:/cookies.json \ No newline at end of file