Mailhog -> Mailpit, add openupgradelib, update readme

This commit is contained in:
Alexander Bigga 2024-02-15 16:05:49 +01:00
parent c2df869203
commit cccf978a33
2 changed files with 18 additions and 8 deletions

View File

@ -34,7 +34,8 @@ RUN apt-get update && \
&& curl -o wkhtmltox.deb -sSL https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.5/wkhtmltox_0.12.5-1.buster_amd64.deb \ && curl -o wkhtmltox.deb -sSL https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.5/wkhtmltox_0.12.5-1.buster_amd64.deb \
&& echo 'ea8277df4297afc507c61122f3c349af142f31e5 wkhtmltox.deb' | sha1sum -c - \ && echo 'ea8277df4297afc507c61122f3c349af142f31e5 wkhtmltox.deb' | sha1sum -c - \
&& apt-get install -y --no-install-recommends ./wkhtmltox.deb \ && apt-get install -y --no-install-recommends ./wkhtmltox.deb \
&& rm -rf /var/lib/apt/lists/* wkhtmltox.deb && rm -rf /var/lib/apt/lists/* wkhtmltox.deb \
&& pip install openupgradelib
# install latest postgresql-client # install latest postgresql-client
RUN echo 'deb http://apt.postgresql.org/pub/repos/apt/ bullseye-pgdg main' > /etc/apt/sources.list.d/pgdg.list \ RUN echo 'deb http://apt.postgresql.org/pub/repos/apt/ bullseye-pgdg main' > /etc/apt/sources.list.d/pgdg.list \

View File

@ -32,24 +32,27 @@ services:
ports: ports:
- 8269:8069 - 8269:8069
command: -- --dev=all command: -- --dev=all
environment:
- OPENUPGRADE_TARGET_VERSION=15.0
volumes: volumes:
- odoo15-data-live:/var/lib/odoo - odoo15-data-live:/var/lib/odoo
- ./config:/etc/odoo - ./config:/etc/odoo
- ./addons:/mnt/extra-addons - ./addons:/mnt/extra-addons
db: db:
container_name: odoo15-db-live-1 container_name: odoo15-db-live-1
image: postgres:13 image: postgres:15
environment: environment:
- POSTGRES_DB=postgres - POSTGRES_DB=postgres
- POSTGRES_PASSWORD=odoo - POSTGRES_PASSWORD=odoo
- POSTGRES_USER=odoo - POSTGRES_USER=odoo
volumes: volumes:
- odoo15-db-data-live:/var/lib/postgresql/data - odoo15-db-data-live:/var/lib/postgresql/data
mailhog: - ./import-db:/tmp/import-db
image: mailhog/mailhog mailpit:
image: axllent/mailpit
ports: ports:
- 1225:1025 # smtp server - 1225:1025 # smtp server
- 8227:8025 # web ui - 8225:8025 # web ui
adminer: adminer:
image: adminer image: adminer
#restart: always #restart: always
@ -66,7 +69,13 @@ Ports for the web access can be configured in the docker-compose file.
### Odoo ### Odoo
http://localhost:8269/ #### Login
http://localhost:8269/web/login
#### Database-Manager
http://localhost:8269/web/database/manager
### Adminer (PostgreSQL) ### Adminer (PostgreSQL)
@ -78,6 +87,6 @@ http://localhost:8282/
* Password: odoo * Password: odoo
* Database: empty * Database: empty
### Mailhog ### Mailpit
http://localhost:8227/ http://localhost:8225/