Quantcast
Channel: Tryton
Viewing all articles
Browse latest Browse all 67

Tryton on Docker

$
0
0

In order to easy the adoption of Tryton, we are publishing Docker images images on the Docker hub for all series starting from 4.4.

Docker

They contain the server, the web client and all modules of the series. They are periodically updated and tagged per series. They work with the postgres images as default storage back-end.

The usage is pretty simple:

$ docker run --name postgres -e POSTGRES_DB=tryton -d postgres
$ docker run --link postgres:postgres -it tryton/tryton trytond-admin -d tryton --all
$ docker run --name tryton -p 8000:8000 --link postgres:postgres -d tryton/tryton

Then you can connect using: http://localhost:8000/


Viewing all articles
Browse latest Browse all 67

Trending Articles