Skip to content

Commit

Permalink
Add finishing touches
Browse files Browse the repository at this point in the history
  • Loading branch information
hc186011 committed Aug 22, 2024
1 parent e66271a commit c905813
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions deployments/docker/ai-unlimited.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,33 +6,33 @@ services:
replicas: 1
platform: linux/amd64
container_name: ai-unlimited-workspaces
image: ${WORKSPACES_IMAGE_NAME:-docker.io/teradata/regulus-workspaces}:latest
image: ${AI_UNLIMITED_IMAGE_NAME:-teradata/ai-unlimited-workspaces}:${AI_UNLIMITED_IMAGE_TAG:-v0.2.23}
command: workspaces serve -v
restart: unless-stopped
ports:
- "443:443/tcp"
- "3000:3000/tcp"
- "3282:3282/tcp"
- "${TD_VCD_AUTH_PORT:-3000}:${TD_VCD_AUTH_PORT:-3000}/tcp"
- "${TD_VCD_API_PORT:-3282}:${TD_VCD_API_PORT:-3282}/tcp"
environment:
accept_license: "Y"
TZ: ${AI_UNLIMITED_TZ:-UTC}
TD_VCD_API_PORT: "${TD_VCD_API_PORT:-3282}"
TD_VCD_AUTH_PORT: "${TD_VCD_AUTH_PORT:-3000}"
TD_VCD_INIT_API_KEY: "${AI_UNLIMITED_INIT_API_KEY:?Initial API key is required, please run the generate api key script.}"
volumes:
- ${AI_UNLIMITED_HOME:-./volumes/ai-unlimited-workspaces}:/etc/td
networks:
- ai-unlimited
ai-unlimited-front-end:
ai-unlimited-ui:
deploy:
replicas: 1
platform: linux/amd64
container_name: workspaces-ui
image: ${WORKSPACES_UI_IMAGE_NAME:-teradata/regulus-workspaces-ui}:${WORKSPACES_UI_IMAGE_TAG:-latest}
image: ${AI_UNLIMITED_UI_IMAGE_NAME:-teradata/ai-unlimited-workspaces-ui}:${AI_UNLIMITED_IMAGE_TAG:-v0.0.3}
ports:
- "443:443/tcp"
- "${TD_VCD_UI_PORT:-80}:80/tcp"
environment:
TD_VCD_UI_BASE_URL: "http://localhost"
TD_VCD_UI_PORT: "${TD_VCD_UI_PORT:-80}"
TD_VCD_API_BASE_URL: "http://localhost"
TD_VCD_API_PORT: "${TD_VCD_API_PORT:-3282}"
TD_VCD_AUTH_PORT: "${TD_VCD_AUTH_PORT:-3000}"
TD_VCD_INIT_API_KEY: "${AI_UNLIMITED_INIT_API_KEY:?Initial API key is required, please run the generate api key script.}"
Expand Down

0 comments on commit c905813

Please sign in to comment.