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
3 changes: 3 additions & 0 deletions .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ jobs:
- context: tailwindcss
tag: tailwindcss-language-server

- context: taplo
tag: taplo-language-server

- context: terraformls
tag: terraform-ls

Expand Down
5 changes: 5 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,11 @@ services:
build:
context: servers/tailwindcss

taplo:
image: lspcontainers/taplo-language-server
build:
context: servers/taplols

terraformls:
image: lspcontainers/terraform-ls
build:
Expand Down
3 changes: 3 additions & 0 deletions servers/taplols/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
FROM tamasfe/taplo:full

CMD [ "lsp", "stdio" ]