Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

On the host system docker and docker-compose must be installed.

A public IP and a hostname / domain pointing to that IP must be configured. If that is not given check the common problems below.

License agreement

The translate5 installation consists of several Docker images providing the needed software apart from translate5 itself.

...

Code Block
titleThe whole error message of the pdfconverter container
docker-pdfconverter-1  |  [WARNING] The local web server is already running                              
docker-pdfconverter-1  |                                                                                 
docker-pdfconverter-1  | 
docker-pdfconverter-1  | Local Web Server
docker-pdfconverter-1  |     Listening on http://127.0.0.1:8086
docker-pdfconverter-1  |     The Web server is using PHP FPM 7.4.33 (from default version in $PATH)
docker-pdfconverter-1  | 
docker-pdfconverter-1  | Local Domains
docker-pdfconverter-1  | 
docker-pdfconverter-1  | Workers
docker-pdfconverter-1  |     No Workers
docker-pdfconverter-1  | 
docker-pdfconverter-1  | Environment Variables
docker-pdfconverter-1  |     None


Use a local setup only

If you do not plan to make the installation public and you just want to evaluate translate5 locally, you have to do the following additional steps:

Code Block
languageyml
titleAdd to the proxy service section in your docker-compose.yml
services:
    proxy:
        ports:
            - "127.0.0.1:80:80" # map 
        extra_hosts:
            - ${APP_HOST}:127.0.0.1

Set APP_HOST in your .env file to localhost.

Or if you wanna use a different hostname, configure that in your /etc/hosts file first.