- Created __init__.py and __manifest__.py for the new dine360_dashboard_website module. - Implemented custom controllers to handle website routing and dashboard rendering. - Added views for website logo and shop template to enhance the user interface. - Updated dine360_reservation and dine360_restaurant modules to include dine360_table as a dependency. - Enhanced restaurant table management with new views and actions for floors and tables. - Updated docker-compose to change the exposed port for the Odoo service.
40 lines
790 B
YAML
40 lines
790 B
YAML
services:
|
||
db:
|
||
image: postgres:15
|
||
container_name: odoo_client6_db
|
||
environment:
|
||
POSTGRES_DB: postgres
|
||
POSTGRES_USER: odoo
|
||
POSTGRES_PASSWORD: odoo
|
||
volumes:
|
||
- client6_pgdata:/var/lib/postgresql/data
|
||
restart: always
|
||
|
||
odoo:
|
||
image: odoo:17.0
|
||
container_name: odoo_client6
|
||
depends_on:
|
||
- db
|
||
ports:
|
||
- "10006:8069"
|
||
environment:
|
||
HOST: db
|
||
USER: odoo
|
||
PASSWORD: odoo
|
||
LIST_DB: "True"
|
||
volumes:
|
||
- client6_odoo_data:/var/lib/odoo
|
||
- ./addons:/mnt/extra-addons
|
||
restart: always
|
||
|
||
volumes:
|
||
client6_pgdata:
|
||
client6_odoo_data:
|
||
|
||
|
||
# backups:
|
||
# .\backup_db.ps1
|
||
|
||
# Team Members – Restore
|
||
# cat d:\Odoo\backups\YOUR_BACKUP_FILE.sql | docker exec -i odoo_client6_db psql -U odoo -d postgres
|