Skip to content
Open
Show file tree
Hide file tree
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: 4 additions & 0 deletions templates/iii/quickstart/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ services:
dockerfile: Dockerfile
environment:
III_BRIDGE_URL: ws://host.docker.internal:49134
III_HOST_USER_ID: ${III_HOST_USER_ID:-}
extra_hosts:
- "host.docker.internal:host-gateway"
restart: unless-stopped
Expand All @@ -23,6 +24,7 @@ services:
dockerfile: Dockerfile
environment:
III_BRIDGE_URL: ws://host.docker.internal:49134
III_HOST_USER_ID: ${III_HOST_USER_ID:-}
extra_hosts:
- "host.docker.internal:host-gateway"
restart: unless-stopped
Expand All @@ -33,6 +35,7 @@ services:
dockerfile: Dockerfile
environment:
III_BRIDGE_URL: ws://host.docker.internal:49134
III_HOST_USER_ID: ${III_HOST_USER_ID:-}
extra_hosts:
- "host.docker.internal:host-gateway"
restart: unless-stopped
Expand All @@ -43,6 +46,7 @@ services:
dockerfile: Dockerfile
environment:
III_BRIDGE_URL: ws://host.docker.internal:49134
III_HOST_USER_ID: ${III_HOST_USER_ID:-}
extra_hosts:
- "host.docker.internal:host-gateway"
restart: unless-stopped
2 changes: 2 additions & 0 deletions templates/iii/quickstart/services/client/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
FROM node:20-alpine
ENV III_CONTAINER=docker
ENV III_ENV=development
WORKDIR /app
COPY package.json package-lock.json* pnpm-lock.yaml* ./
RUN npm install
Expand Down
2 changes: 2 additions & 0 deletions templates/iii/quickstart/services/compute-service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ COPY src ./src
RUN cargo build --release

FROM debian:bookworm-slim
ENV III_CONTAINER=docker
ENV III_ENV=development
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates && rm -rf /var/lib/apt/lists/*
COPY --from=builder /app/target/release/compute-service /app/
WORKDIR /app
Expand Down
2 changes: 2 additions & 0 deletions templates/iii/quickstart/services/data-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
FROM python:3.12-slim
ENV III_CONTAINER=docker
ENV III_ENV=development
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
Expand Down
2 changes: 2 additions & 0 deletions templates/iii/quickstart/services/payment-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
FROM node:20-alpine
ENV III_CONTAINER=docker
ENV III_ENV=development
WORKDIR /app
COPY package.json package-lock.json* pnpm-lock.yaml* ./
RUN npm install
Expand Down