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
2 changes: 1 addition & 1 deletion README.GSoC.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ npm run dev
#### Build and run with Docker Compose (recommended)
From the project root:
```bash
docker-compose -f docker-compose_dev.yml up -d
docker compose -f dev-docker-compose.yaml up -d
```
- The UI will be available at [http://localhost:3000](http://localhost:3000)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ npm install
### Start the development services:

```bash
docker compose -f docker-compose_dev.yml up -d
docker compose -f dev-docker-compose.yaml up -d
```

### Stop the development services:

```bash
docker compose -f docker-compose_dev.yml down
docker compose -f dev-docker-compose.yaml down
```

## 4. Access the Application
Expand Down
1 change: 1 addition & 0 deletions dev-docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ services:
- 3000:3000
volumes:
- ./ui/:/home/node/app
- /home/node/app/node_modules
environment:
NEXT_PUBLIC_BASE_PATH: ${NEXT_APP_URL}
NEXT_PUBLIC_API_URL: ${NEXT_API_URL}
Expand Down
3 changes: 3 additions & 0 deletions ui/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ FROM node:20.20-bullseye

WORKDIR /home/node/app

COPY package*.json ./
RUN npm ci

COPY . .

EXPOSE 3000