Syntax error volumes

I cant deploy what worng
Unmarshalling compose...
x Syntax error volumes should be 'local_path:remote_path' or 'remote_path'

version: "3.3"
services:
  nginx:
    image: jwilder/nginx-proxy
    networks:
      - flowforge 
    restart: always
    volumes:
      - "/var/run/docker.sock:/tmp/docker.sock:ro"
    ports:
      - "80:80"
      # - "443:443"
  postgres:
    image: postgres
    networks: 
      - flowforge
    restart: always
    environment:
      POSTGRES_PASSWORD: secret
      POSTGRES_USER: root
    volumes:
      - "./db:/var/lib/postgresql/data"
      - "./setup-db.sh:/docker-entrypoint-initdb.d/setup-db.sh"
  forge:
    build:
      context: "./flowforge-docker"
    image: "flowforge/forge-docker"
    networks: 
      - flowforge
    restart: always
    environment:
      - "VIRTUAL_HOST=forge.example.com"
    volumes:
      - "/var/run/docker.sock:/tmp/docker.sock"
      - "./etc/flowforge.yml:/usr/src/forge/etc/flowforge.yml"
    depends_on:
      - "postgres"
      - "nginx"

networks:
  flowforge:

Okteto doesn’t support mounting the docker socket. The volume key can only be used for file directories.

Docker Compose Reference | Okteto Documentation has more information on the formats supported.