Skip to content

Commit

Permalink
docs: Update Docker documentation (t3-oss#1759)
Browse files Browse the repository at this point in the history
  • Loading branch information
conboy committed Feb 20, 2024
1 parent ec56d53 commit f0c425d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions www/src/pages/en/deployment/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ README.md
##### DEPENDENCIES
FROM --platform=linux/amd64 node:20-alpine AS deps
RUN apk add --no-cache libc6-compat openssl1.1-compat
RUN apk add --no-cache libc6-compat openssl
WORKDIR /app
# Install Prisma Client - remove if not using Prisma
Expand Down Expand Up @@ -148,7 +148,7 @@ You can also use Docker Compose to build the image and run the container.

<details>
<summary>
Follow steps 1-4 above, click here, and include contents in <code>docker-compose.yml</code>:
Follow steps 1-3 above, click here, and include contents in <code>docker-compose.yml</code>:
</summary>
<div class="content">

Expand All @@ -170,10 +170,10 @@ services:
- DATABASE_URL=database_url_goes_here
```
Run this using the `docker compose up` command:
Build and run this using the `docker compose up --build` command:

```bash
docker compose up
docker compose up --build
```

Open [localhost:3000](https://localhost:3000/) to see your running application.
Expand Down

0 comments on commit f0c425d

Please sign in to comment.