version: '3.9' services: backend: build: context: . dockerfile: backend/Dockerfile args: GITEA_NPM_TOKEN: ${GITEA_NPM_TOKEN} container_name: invttrdg-backend env_file: - .env ports: - '4025:4018' networks: - default - platform_net restart: unless-stopped web: build: context: . dockerfile: web/Dockerfile args: GITEA_NPM_TOKEN: ${GITEA_NPM_TOKEN} VITE_PRODUCT_ID: invttrdg VITE_PLATFORM_URL: https://api.bytelyst.com/platform/api VITE_TRADING_API_URL: https://api.bytelyst.com/invttrdg/api container_name: invttrdg-web ports: - '3085:3085' networks: - default - platform_net restart: unless-stopped depends_on: - backend networks: default: {} platform_net: external: true name: learning_ai_common_plat_default