Skip to content
This repository has been archived by the owner on Dec 15, 2021. It is now read-only.

add variable for custom port and pgsql_password #779

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions templates/odoo/0/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
odoo:
image: odoo
ports:
- "8069:8069"
- ${port}:8069
links:
- db
db:
image: postgres
environment:
- POSTGRES_USER=odoo
- POSTGRES_PASSWORD=odoo
- POSTGRES_PASSWORD=${pgsql_password}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You also need to add questions for ${port} and ${pgsql_password} at rancher-compose.yml file. Why not to add also ${pgsql_user}??