Thank you so much for your response
I have tried with the following dockerfile:
FROM agentejo/cockpit
ARG COCKPIT_VERSION="master"
ARG CONFIG_FILE_YAML
# install cloud storage addon for AWS, Azure or Google storage
RUN wget https://github.com/agentejo/CloudStorage/archive/${COCKPIT_VERSION}.zip -O /tmp/CloudStorage.zip; unzip /tmp/CloudStorage.zip -d /tmp/; rm /tmp/CloudStorage.zip
RUN mkdir -p /var/www/html/addons/CloudStorage
RUN mv /tmp/CloudStorage-${COCKPIT_VERSION}/* /var/www/html/addons/CloudStorage/
RUN rm -R /tmp/CloudStorage-${COCKPIT_VERSION}/
COPY ./${CONFIG_FILE_YAML} /var/www/html/config/config.yaml
COPY ./config/config.php /var/www/html/config/config.php
But i get the same result. The Asset is still uploaded to the containers filesystem instead of S3, no errors or anything.
I have a hunch i place the config.yaml in the wrong place? Can you confirm that /var/www/html/config/config.yaml
is the correct path?
Kind Regards
Frederik