Skip to content
This repository has been archived by the owner on Jun 16, 2022. It is now read-only.

Use port 5000 until we have an odoo image instead of webapp #3

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: 3 additions & 1 deletion manifold.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@ def nginx_server_name(self):
# several minion in one 'docker-compose'
@property
def port(self):
return '8069'
# FIXME: step 1, change to 8069 for Odoo
# FIXME: step 2, get the port from docker-compose (or consul?)
return '5000'

@property
def ip(self):
Expand Down