Skip to main content
Module

x/deno_csrf/docker-compose.yml

Provides Deno with the CSRF protection of rust-csrf.
Latest
File
version: "3"services: rust-app: build: context: . dockerfile: RustDockerfile volumes: - .:/app:cached tty: true deno-app: build: context: . dockerfile: DenoDockerfile privileged: true entrypoint: - /sbin/init volumes: - .:/usr/src/app:cached tty: true