mirror of
https://github.com/vee1e/GDB-UI.git
synced 2026-09-01 18:57:18 +00:00
24 lines
409 B
YAML
24 lines
409 B
YAML
version: "3"
|
|
services:
|
|
gdbui_server:
|
|
build:
|
|
dockerfile: DockerFile.dev
|
|
context: ./gdbui_server
|
|
volumes:
|
|
- ./gdbui_server:/app
|
|
ports:
|
|
- "10000:10000"
|
|
expose:
|
|
- 10000
|
|
|
|
webapp:
|
|
build:
|
|
dockerfile: DockerFile.dev
|
|
context: ./webapp
|
|
volumes:
|
|
- /app/node_modules
|
|
- ./webapp:/app
|
|
ports:
|
|
- "5173:5173"
|
|
expose:
|
|
- 5173
|