From 035c6db7f87f57f17d86f5f235a69806ec9c6e8f Mon Sep 17 00:00:00 2001 From: Isaac Shoebottom Date: Fri, 6 Dec 2024 13:44:04 -0400 Subject: [PATCH] Add optional cobalt stuff for later (maybe) --- cobalt/docker-compose.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/cobalt/docker-compose.yml b/cobalt/docker-compose.yml index 2dce1c1..de84598 100755 --- a/cobalt/docker-compose.yml +++ b/cobalt/docker-compose.yml @@ -5,6 +5,7 @@ services: restart: unless-stopped container_name: cobalt init: true + read_only: true ports: - 9000:9000/tcp # if you're using a reverse proxy, uncomment the next line and remove the one above (9000:9000/tcp): @@ -16,7 +17,8 @@ services: 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 # COOKIE_PATH: "/cookies.json" - # 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 + # Uncomment to enable api key + # API_KEY_URL: "file:///keys.json" #volumes: - #- ./cookies.json:/cookies.json \ No newline at end of file + #- /docker/appdata/cobalt/cookies.json:/cookies.json:ro + #- /docker/appdata/cobalt/keys.json:/keys.json:ro \ No newline at end of file