odoo-shivasakthi/docker-compose_270326.yml
Alaguraj0361 353281e248 Refactor and update Chennora theme to Shivasakthi branding
- Removed obsolete XML views related to product templates and configuration settings.
- Deleted shop page layout and snippets XML files to streamline theme structure.
- Added new logo and slider images for Shivasakthi theme.
- Updated SCSS styles for improved footer design and added pre-footer food slider.
- Modified layout XML to incorporate new logo and enhanced footer with social links and contact information.
- Removed premium auto-sliding gallery section from pages XML.
- Updated site metadata and canonical links in HTML files to reflect Shivasakthi branding.
- Adjusted Docker Compose configuration for new database and volume names.
2026-06-09 13:04:44 +05:30

49 lines
1.0 KiB
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

services:
db:
image: postgres:15
container_name: odoo_client2_db
environment:
POSTGRES_DB: postgres
POSTGRES_USER: odoo
POSTGRES_PASSWORD: odoo
volumes:
- client2_pgdata:/var/lib/postgresql/data
restart: always
odoo:
image: odoo:17.0
container_name: odoo_client2
depends_on:
- db
ports:
- "10002:8069"
environment:
HOST: db
USER: odoo
PASSWORD: odoo
LIST_DB: "True"
WORKERS: "2"
LIMIT_TIME_CPU: "600"
LIMIT_TIME_REAL: "1200"
PROXY_MODE: "True"
volumes:
- client2_odoo_data:/var/lib/odoo
- ./addons:/mnt/extra-addons
restart: always
volumes:
client2_pgdata:
external: true
name: odoo-shivasakthi-pos_client2_pgdata
client2_odoo_data:
external: true
name: odoo-shivasakthi-pos_client2_odoo_data
# backups:
# .\backup_db.ps1
# Team Members Restore
# cat d:\Odoo\backups\YOUR_BACKUP_FILE.sql | docker exec -i odoo_client2_db psql -U odoo -d postgres