:wave: Hi everyone! I am trying to figure out the ...
# general
v
👋 Hi everyone! I am trying to figure out the best way to add signoz to local dev where I work. We have our services which have docker-compose config files that set up each of the services containers (api container, database, tools, redis, etc) and I was wondering if there is any image or something like that from signoz which means I could just add a new container and pull in signoz for that? I don't really wanna have to create a new container based on a linux distro and then ssh into it to do manual installation of the necessary components as we cannot do that in other environments.
v
@Prashant Shahi
p
Hi @Vitor Faiante 👋
I think you would have to refer to the docker compose config from here: https://github.com/SigNoz/signoz/blob/develop/deploy/docker/clickhouse-setup/docker-compose.yaml
The above config relies mounting the local directory from VM due to bind type volume. So, in your case you would likely have to switch to volume type instead.
v
Thank you @Prashant Shahi I will have a look