I have replaced conf/opt/graphite/conf/storage-schemas.conf and conf/opt/statsd/config.js with my own files. However, neither are available in the container instance after running docker build /path/to/Dockerfile with and without the --no-cache option.
This seems fishy because of these relevant commands in the Dockerfile.
ADD conf/opt/graphite/conf/*.conf /opt/graphite/conf/ADD conf /etc/graphite-statsd/conf
Am I missing something? At the present, I'm forced to manually copy the files from the host to the container.
I have replaced
conf/opt/graphite/conf/storage-schemas.conf
andconf/opt/statsd/config.js
with my own files. However, neither are available in the container instance after runningdocker build /path/to/Dockerfile
with and without the--no-cache
option.This seems fishy because of these relevant commands in the Dockerfile.
ADD conf/opt/graphite/conf/*.conf /opt/graphite/conf/
ADD conf /etc/graphite-statsd/conf
Am I missing something? At the present, I'm forced to manually copy the files from the host to the container.