From 2dc9d640927ea41556dab20b6d9d33f457ef6d8b Mon Sep 17 00:00:00 2001 From: dumbmoron Date: Mon, 9 Sep 2024 16:50:50 +0000 Subject: [PATCH] docs/examples: update composefile example --- docs/examples/docker-compose.example.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/docs/examples/docker-compose.example.yml b/docs/examples/docker-compose.example.yml index af91f1b7..7d3442de 100644 --- a/docs/examples/docker-compose.example.yml +++ b/docs/examples/docker-compose.example.yml @@ -1,14 +1,11 @@ services: cobalt-api: - image: ghcr.io/imputnet/cobalt:7 + image: ghcr.io/imputnet/cobalt:10 restart: unless-stopped container_name: cobalt-api init: true - # if container doesn't run detached on your machine, uncomment the next line - #tty: true - ports: - 9000:9000/tcp # if you're using a reverse proxy, uncomment the next line and remove the one above (9000:9000/tcp): @@ -17,8 +14,6 @@ services: environment: # replace https://api.cobalt.tools/ with your instance's target url in same format API_URL: "https://api.cobalt.tools/" - # replace eu-nl with your instance's distinctive name - API_NAME: "eu-nl" # if you want to use cookies when fetching data from services, uncomment the next line and the lines under volume # COOKIE_PATH: "/cookies.json" # see docs/run-an-instance.md for more information