You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We aim to migrate the chamilo platform from standard hosting to a Docker architecture, what do you think about this configuration file? Dockerfile for webserver (PHP + NGINX):
FROM webdevops/php-nginx:7.4
RUN mkdir -p /app/chamilo
WORKDIR /app
RUN git clone --depth=1 --single-branch -b 1.11.x https://github.com/chamilo/chamilo-lms.git chamilo
WORKDIR /app/chamilo
RUN ls -ll
RUN rm -rf vendor/* web/* composer.lock
RUN su application
RUN composer update
RUN exit
RUN chown -R application:application app main/default_course_document/images main/lang web
Hi Yannick,
We aim to migrate the chamilo platform from standard hosting to a Docker architecture, what do you think about this configuration file?
Dockerfile for webserver (PHP + NGINX):
docker-compose.yml:
In my local machine, app run without any issue, can I use the same configuration in production ? database will be in dedicated server
The text was updated successfully, but these errors were encountered: