mirror of
https://github.com/massbug/judge4c.git
synced 2025-05-17 23:12:23 +00:00
21 lines
373 B
YAML
21 lines
373 B
YAML
|
services:
|
||
|
lsp-c:
|
||
|
image: clangd:latest
|
||
|
build:
|
||
|
context: ./lsp/clangd
|
||
|
dockerfile: Dockerfile
|
||
|
container_name: lsp-c
|
||
|
restart: always
|
||
|
ports:
|
||
|
- "4594:3000"
|
||
|
|
||
|
lsp-cpp:
|
||
|
image: clangd:latest
|
||
|
build:
|
||
|
context: ./lsp/clangd
|
||
|
dockerfile: Dockerfile
|
||
|
container_name: lsp-cpp
|
||
|
restart: always
|
||
|
ports:
|
||
|
- "4595:3000"
|