08e8104cd9
This was previously breaking the go tooling as the working directly was being searched by the lsp and go mod tidy. The go tools ignore directories that begin with underscores.
14 lines
330 B
YAML
14 lines
330 B
YAML
version: "3.3"
|
|
services:
|
|
cursorius-server:
|
|
build:
|
|
context: ..
|
|
dockerfile: docker/Dockerfile.dev
|
|
ports:
|
|
- "0.0.0.0:45420:45420"
|
|
volumes:
|
|
- "..:/build"
|
|
- "../server.toml:/root/.config/cursorius/server.toml"
|
|
- "/var/run/docker.sock:/var/run/docker.sock"
|
|
- "../_working/go:/go"
|