Upgrade Docker container

From LogicalDOC Community Wiki
Revision as of 10:25, 10 December 2021 by Blucecio (talk | contribs) (Created page with "Here is how you usually start a Docker container with LogicalDOC connected to a MySQL 8.0 container for DB engine Get the LogicalDOC 8.6.1 image docker pull logicaldoc/logica...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Here is how you usually start a Docker container with LogicalDOC connected to a MySQL 8.0 container for DB engine

Get the LogicalDOC 8.6.1 image docker pull logicaldoc/logicaldoc:8.6.1

Run the MySQL container docker run --name=mysqlld861 -e MYSQL_ROOT_PASSWORD=mypassword -e MYSQL_DATABASE=logicaldoc -e MYSQL_USER=ldoc -e MYSQL_PASSWORD=changeme mysql:latest --default-authentication-plugin=mysql_native_password

Run the LogicalDOC container connected to the MySQL one docker run -p 8080:8080 -e LDOC_USERNO=543645 -e DB_HOST=mysqlld861 --link mysqlld861 logicaldoc/logicaldoc:8.6.1