UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Verified Commit d200d32d authored by Patrick Tafoya's avatar Patrick Tafoya
Browse files

BULL-3225-better-startup - Dropping use of custom-built ui and api containers.

parent 133ae537
No related branches found
No related tags found
1 merge request!11BULL-3225-better-startup
......@@ -2,14 +2,12 @@ services:
# backend nodejs API
xx_project_name_xx-api:
build:
context: .
dockerfile: Dockerfile.be.dev
image: node:20.11
container_name: xx_project_name_xx-api
user: "${UID:-1000}:${GID:-1000}" # Default to 1000:1000 if UID/GID not set
working_dir: /app
volumes:
- ./xx_project_name_xx-api:/app
- /app/node_modules
command: bash -c "npm run dev"
environment:
# container internal port (not exposed to host)
......
services:
xx_project_name_xx-ui:
build:
context: .
dockerfile: Dockerfile.ui.dev
image: node:20.11
container_name: xx_project_name_xx-ui
user: "${UID:-1000}:${GID:-1000}" # Default to 1000:1000 if UID/GID not set
working_dir: /app
volumes:
- ./xx_project_name_xx-ui:/app
- /app/node_modules
command: npx vite --host
environment:
# container internal port (not exposed to host)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment