mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
b78f2d1a91
Co-authored-by: ex0ns <ex0ns@protonmail.ch>
26 lines
649 B
YAML
26 lines
649 B
YAML
version: '3.7'
|
|
services:
|
|
windmill:
|
|
build:
|
|
context: .
|
|
dockerfile: .devcontainer/Dockerfile
|
|
# image: mcr.microsoft.com/vscode/devcontainers/rust:bullseye
|
|
environment:
|
|
- DENO_PATH=/usr/local/cargo/bin/deno
|
|
- PYTHON_PATH=/usr/bin/python3
|
|
- NSJAIL_PATH=/bin/nsjail
|
|
volumes:
|
|
- .:/workspace:cached
|
|
- ~/.ssh:/home/vscode/.ssh:ro
|
|
|
|
command: /bin/sh -c "while sleep 1000; do :; done"
|
|
|
|
|
|
front:
|
|
image: mcr.microsoft.com/vscode/devcontainers/typescript-node:16
|
|
volumes:
|
|
- .:/workspace:cached
|
|
- ~/.ssh:/home/node/.ssh:ro
|
|
|
|
command: /bin/sh -c "while sleep 1000; do :; done"
|