Compare commits

8 Commits

Author SHA1 Message Date
489128fd4d Actualizar docker-compose.yaml 2025-11-08 11:07:51 -05:00
40af2316c6 fix 2025-11-06 22:51:27 -05:00
2e2c5fea18 fix: .dev/run.sh path 2025-11-06 22:48:41 -05:00
a8b99f5aa2 fix: path 2025-11-06 22:38:55 -05:00
3740330f86 fix: update submodules path 2025-11-06 22:37:37 -05:00
edae8c3967 fix: submodules path 2025-11-06 22:35:34 -05:00
558a793d47 fix: Update submodules path 2025-11-06 22:32:45 -05:00
2511d6ef7a feat: add docker-compose.yaml 2025-11-06 22:00:01 -05:00
2 changed files with 46 additions and 13 deletions

26
.gitmodules vendored
View File

@@ -1,46 +1,46 @@
[submodule "modules/party_co"]
path = modules/party_co
url = ssh://git@gitea.onecluster.org:6666/OneTeam/trytondo-party_co.git
url = https://aserrador:3sh0r4d3s3gu1r@gitea.onecluster.org/OneTeam/trytondo-party_co.git
branch = main
[submodule "web_app"]
path = web_app
url = ssh://git@gitea.onecluster.org:6666/OneTeam/Naliia_webapp.git
url = https://aserrador:3sh0r4d3s3gu1r@gitea.onecluster.org/OneTeam/Naliia_webapp.git
branch = main
[submodule "naliia"]
[submodule "modules/naliia"]
path = modules/naliia
url = ssh://git@gitea.onecluster.org:6666/OneTeam/trytond-au-naliia.git
url = https://aserrador:3sh0r4d3s3gu1r@gitea.onecluster.org/OneTeam/trytond-au-naliia.git
[submodule "modules/sale_w_tax"]
path = modules/sale_w_tax
url = ssh://git@gitea.onecluster.org:6666/OneTeam/trytondo-sale_w_tax.git
url = https://aserrador:3sh0r4d3s3gu1r@gitea.onecluster.org/OneTeam/trytondo-sale_w_tax.git
branch = 7.6
[submodule "modules/sale_shop"]
path = modules/sale_shop
url = ssh://git@gitea.onecluster.org:6666/OneTeam/trytondo-sale_shop.git
url = https://aserrador:3sh0r4d3s3gu1r@gitea.onecluster.org/OneTeam/trytondo-sale_shop.git
branch = 7.6
[submodule "modules/sale_pos"]
path = modules/sale_pos
url = ssh://git@gitea.onecluster.org:6666/OneTeam/trytondo-sale_pos.git
url = https://aserrador:3sh0r4d3s3gu1r@gitea.onecluster.org/OneTeam/trytondo-sale_pos.git
branch = 7.6
[submodule "modules/sale_payment"]
path = modules/sale_payment
url = ssh://git@gitea.onecluster.org:6666/OneTeam/trytondo-sale_payment.git
url = https://aserrador:3sh0r4d3s3gu1r@gitea.onecluster.org/OneTeam/trytondo-sale_payment.git
branch = 7.6
[submodule "modules/sale_pos_extras"]
path = modules/sale_pos_extras
url = ssh://git@gitea.onecluster.org:6666/OneTeam/trytondo-sale_pos_extras.git
url = https://aserrador:3sh0r4d3s3gu1r@gitea.onecluster.org/OneTeam/trytondo-sale_pos_extras.git
branch = 7.6
[submodule "modules/sale_one_click"]
path = modules/sale_one_click
url = ssh://git@gitea.onecluster.org:6666/OneTeam/trytondo-sale_one_click.git
url = https://aserrador:3sh0r4d3s3gu1r@gitea.onecluster.org/OneTeam/trytondo-sale_one_click.git
branch = 7.6
[submodule "modules/purchase_one_click"]
path = modules/purchase_one_click
url = ssh://git@gitea.onecluster.org:6666/OneTeam/trytondo-purchase_one_click.git
url = https://aserrador:3sh0r4d3s3gu1r@gitea.onecluster.org/OneTeam/trytondo-purchase_one_click.git
branch = 7.6
[submodule "modules/naliia_shop"]
path = modules/naliia_shop
url = ssh://git@gitea.onecluster.org:6666/OneTeam/trytond-au-naliia_shop.git
url = https://aserrador:3sh0r4d3s3gu1r@gitea.onecluster.org/OneTeam/trytond-au-naliia_shop.git
[submodule "modules/naliia_payment"]
path = modules/naliia_payment
url = ssh://git@gitea.onecluster.org:6666/OneTeam/trytond-au-naliia_payment.git
url = https://aserrador:3sh0r4d3s3gu1r@gitea.onecluster.org/OneTeam/trytond-au-naliia_payment.git
branch = main

33
docker-compose.yaml Normal file
View File

@@ -0,0 +1,33 @@
services:
db:
image: postgres:12
environment:
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_DB=${POSTGRES_DB}
live:
build:
context: .
dockerfile: Dockerfile_Live
args:
TRYTOND_VERSION: ${TRYTOND_VERSION}
depends_on:
- db
command: bash /app/.dev/run.sh
environment:
- DB_NAME=${POSTGRES_DB}
- SRC=/app
- TRYTOND_DATABASE_URI=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${DB_HOSTNAME}:5432/
volumes:
- ./:/app
- ./attachments:/attachments
- ./.dev/pudb.cfg:/root/.config/pudb/pudb.cfg
ports:
- "${TRYTOND_PORT_LIVE:-18020}:8000"
- "${PUDB_PORT_LIVE:-8020}:8020"
working_dir: /app
env_file:
- .env
volumes:
app:
attachments: