1.2(optional) If you are using wkhtmltopdf, you will need to manually install libssl1.1 in the docker file before wkhtmltopdf is installed. Reason: libssl1.1 is no longer included in Ubuntu 22.04:
1.2(optional) If you are using wkhtmltopdf, you will need to manually install libssl1.1 in the docker file before wkhtmltopdf is installed. Reason: libssl1.1 is no longer included in Ubuntu 22.04. Add:
# Manually install libssl1.1
RUN wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.0g-2ubuntu4_amd64.deb
RUN dpkg -i libssl1.1_1.1.0g-2ubuntu4_amd64.deb
...
...
@@ -473,7 +473,7 @@ Installation with Docker::
CMD service php8.1-fpm start && service ssh start && nginx
3. Add new websocket port (8090) to nginx webserver in Dockerfile, example:
3. Add new websocket port (8090) to nginx webserver in Dockerfile (docker-compose.yml), example: