This message was deleted.
# general
b
This message was deleted.
l
Hi @some-apple-28897, I’m not sure we have any good examples for this, but we do maintain an Infracost docker image. What are you trying to do with Infracost with docker-compose?
s
its cool, ill just use the docker image
👍 1
im trying to run your infracost image with docker-compose
Copy code
version: "3.8"

services:
  infracost:
    image: infracost/infracost:ci-0.10
    container_name: infracost
    restart: on-failure
    environment:
      - INFRACOST_API_KEY
    volumes:
      - .:/home/root/code/
    command: >
     "infracost breakdown --path . --format json --out-file ~/infracost-base.json"
I am simply trying to run it, by having everything defined in 1 docker-compose.yml file but i can't find any support for this approach