docker-compose.yaml 639 B

1234567891011121314151617181920212223242526
  1. services:
  2. playwright:
  3. image: mcr.microsoft.com/playwright:v1.52.0-noble
  4. init: true
  5. network_mode: service:workspace
  6. command:
  7. - /bin/sh
  8. - -c
  9. - npx -y playwright@1.52.0 run-server --port 9001 --host 0.0.0.0
  10. valkey:
  11. image: valkey/valkey:8
  12. pull_policy: always
  13. # VS Code workspace service
  14. workspace:
  15. image: ghcr.io/techarohq/anubis/devcontainer
  16. build:
  17. context: ..
  18. dockerfile: .devcontainer/Dockerfile
  19. volumes:
  20. - ../:/workspace/anubis:cached
  21. environment:
  22. VALKEY_URL: redis://valkey:6379/0
  23. #entrypoint: ["/usr/bin/sleep", "infinity"]
  24. user: vscode