Slackbot
01/13/2022, 8:19 AMPrashant Shahi
01/13/2022, 1:43 PMdefault-address-pools
in daemon.json file. You can find the file in either ~/.docker/daemon.json
or /etc/docker/daemon.json
.
{
"debug": true,
"default-address-pools": [
{
"base": "172.31.0.0/16",
"size": 24
}
]
}
In case you want to set it for just one compose YAML, you can include the following networks
configuration in the SigNoz docker-compose.yaml
.
version: "2.4"
networks:
default:
driver: bridge
ipam:
driver: default
config:
- subnet: 10.210.0.0/16
gateway: 10.210.0.1
...
Let me know if this helps. 🙂edr
01/13/2022, 2:05 PMedr
01/13/2022, 2:06 PMedr
01/13/2022, 2:06 PMPrashant Shahi
01/13/2022, 2:26 PMPrashant Shahi
01/13/2022, 2:33 PMnetworks
section from the above URL and add it to deploy/docker/clickhouse-setup/docker-compose.yaml
.
Followed by ./deploy/install.sh
- make sure to clean up existing SigNoz services before you run install script.edr
01/13/2022, 2:40 PMPrashant Shahi
01/13/2022, 2:40 PMUnsupported config option for services.networks: 'default'I think you are trying to use the default network in the services causing this error. The default network configuration is by default applied to all services of the compose YAML.
edr
01/13/2022, 2:40 PMPrashant Shahi
01/13/2022, 2:40 PM