chore: se adiciona cliente sao 6.8
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
fixes #33
This commit is contained in:
parent
6d77af53ef
commit
ca2d115e22
@ -1,2 +1,3 @@
|
||||
[web]
|
||||
listen = 0.0.0.0:8000
|
||||
listen = 0.0.0.0:8000
|
||||
root=/var/lib/trytond/www
|
@ -23,7 +23,8 @@
|
||||
|
||||
1. iniciar entorno `rake live:up`
|
||||
2. conectar cliente tryton a `localhost:8000` usuario: `admin` y clave: `admin`
|
||||
1. si desea ver la salida de trytond usar `rake live:tail`
|
||||
1. o bien usar cliente web via `http://localhost:8000`
|
||||
2. si desea ver la salida de trytond usar `rake live:tail`
|
||||
3. detener entorno `rake live:down`
|
||||
|
||||
### consideraciones
|
||||
|
12
Dockerfile
12
Dockerfile
@ -1,4 +1,16 @@
|
||||
# TOMADO DE: https://hg.tryton.org/tryton-docker/file/tip/6.6/Dockerfile
|
||||
FROM node as builder-node
|
||||
|
||||
ENV SERIES 6.8
|
||||
RUN npm install -g bower
|
||||
RUN curl https://downloads.tryton.org/${SERIES}/tryton-sao-last.tgz | tar zxf - -C /
|
||||
RUN cd /package && bower install --allow-root
|
||||
|
||||
FROM python:3.9-bullseye
|
||||
|
||||
# trytond DB_CACHE requiere commandos `pg_dump` y `pg_restore`
|
||||
RUN apt-get update && apt-get install -y postgresql-client
|
||||
|
||||
# TOMADO DE: https://hg.tryton.org/tryton-docker/file/tip/6.6/Dockerfile
|
||||
COPY --from=builder-node /package /var/lib/trytond/www
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user