Skip to content

Instantly share code, notes, and snippets.

View grothstein-anotherstep's full-sized avatar

grothstein-anotherstep

View GitHub Profile
@grothstein-anotherstep
grothstein-anotherstep / docker-compose.yml
Created April 29, 2026 19:41
Docker Compose file to run development environments on Another Step, Inc. computers in Docker.
services:
dev:
image: node:20-alpine
user: "root"
volumes:
- .:/app
- pnpm-store:/root/.local/share/pnpm/store
working_dir: /app
tty: true
stdin_open: true